Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1568 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | |||
6 | public interface RequestFrameVisitor { |
||
7 | // void visit(RequestFrame f) throws IOException; |
||
8 | void visit(AnalogDebugLabelRequestFrame f) throws IOException; |
||
9 | void visit(DebugRequestFrame f) throws IOException; |
||
10 | void visit(LoopbackTestRequestFrame f) throws IOException; |
||
11 | void visit(MotorTestRequestFrame f) throws IOException; |
||
12 | void visit(VersionRequestFrame f) throws IOException; |
||
13 | void visit(AttitudeDataRequestFrame f) throws IOException; |
||
14 | void visit(SingleDisplayRequestFrame f) throws IOException; |
||
15 | void visit(AllDisplaysRequestFrame f) throws IOException; |
||
16 | void visit(VariablesRequestFrame f) throws IOException; |
||
17 | void visit(ExternalControlRequestFrame f) throws IOException; |
||
18 | void visit(ResetRequestFrame f) throws IOException; |
||
19 | void visit(ChangeParameterSetRequestFrame f) throws IOException; |
||
20 | void visit(UniversalReadParamSetRequestFrame f) throws IOException; |
||
21 | void visit(UniversalWriteParamSetRequestFrame f) throws IOException; |
||
22 | void visit(SetCompassHeadingRequestFrame f) throws IOException; |
||
23 | void visit(ReadExternalControlRequestFrame f) throws IOException; |
||
24 | void visit(OSDDataRequestFrame f) throws IOException; |
||
25 | void visit(CompassHeadingRequestFrame f) throws IOException; |
||
26 | } |