Subversion Repositories Projects

Rev

Rev 1564 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1564 Rev 1566
1
package dongfang.mkt.frames;
1
package dongfang.mkt.frames;
2
 
2
 
3
import java.io.IOException;
3
import java.io.IOException;
-
 
4
 
-
 
5
import dongfang.mkt.RequestFrameVisitor;
4
 
6
 
5
 
7
 
6
public class VariablesRequestFrame extends RequestFrame {
8
public class VariablesRequestFrame extends RequestFrame {
7
        VariablesRequestFrame(int address) {
9
        VariablesRequestFrame(int address) {
8
                super(address);
10
                super(address);
9
        }
11
        }
10
 
12
 
11
        @Override
13
        @Override
12
        public void accept(RequestFrameVisitor o) throws IOException {
14
        public void accept(RequestFrameVisitor o) throws IOException {
13
                o.visit(this);
15
                o.visit(this);
14
        }
16
        }
15
}
17
}
16
 
18