Subversion Repositories Projects

Rev

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

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