Subversion Repositories Projects

Rev

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

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