Subversion Repositories Projects

Rev

Rev 1564 | 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 ReadExternalControlRequestFrame extends RequestFrame {
8
public class ReadExternalControlRequestFrame extends RequestFrame {
7
 
9
 
8
        public ReadExternalControlRequestFrame(int address) {
10
        public ReadExternalControlRequestFrame(int address) {
9
                super(address);
11
                super(address);
10
        }
12
        }
11
 
13
 
12
        @Override
14
        @Override
13
        public void accept(RequestFrameVisitor o) throws IOException {
15
        public void accept(RequestFrameVisitor o) throws IOException {
14
                o.visit(this);
16
                o.visit(this);
15
        }
17
        }
16
}
18
}
17
 
19