Subversion Repositories Projects

Rev

Rev 1541 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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