Subversion Repositories Projects

Rev

Rev 1562 | Rev 1688 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1562 Rev 1611
Line 11... Line 11...
11
import dongfang.mkt.frames.ExternalControlRequestFrame;
11
import dongfang.mkt.frames.ExternalControlRequestFrame;
12
import dongfang.mkt.frames.LoopbackTestRequestFrame;
12
import dongfang.mkt.frames.LoopbackTestRequestFrame;
13
import dongfang.mkt.frames.MotorTestRequestFrame;
13
import dongfang.mkt.frames.MotorTestRequestFrame;
14
import dongfang.mkt.frames.OSDDataRequestFrame;
14
import dongfang.mkt.frames.OSDDataRequestFrame;
15
import dongfang.mkt.frames.ReadExternalControlRequestFrame;
15
import dongfang.mkt.frames.ReadExternalControlRequestFrame;
-
 
16
import dongfang.mkt.frames.ReadIMUConfigurationRequestFrame;
-
 
17
import dongfang.mkt.frames.ReadParamSetRequestFrame;
16
import dongfang.mkt.frames.ResetRequestFrame;
18
import dongfang.mkt.frames.ResetRequestFrame;
17
import dongfang.mkt.frames.SetCompassHeadingRequestFrame;
19
import dongfang.mkt.frames.SetCompassHeadingRequestFrame;
18
import dongfang.mkt.frames.SingleDisplayRequestFrame;
20
import dongfang.mkt.frames.SingleDisplayRequestFrame;
19
import dongfang.mkt.frames.UniversalReadParamSetRequestFrame;
-
 
20
import dongfang.mkt.frames.UniversalWriteParamSetRequestFrame;
-
 
21
import dongfang.mkt.frames.VariablesRequestFrame;
21
import dongfang.mkt.frames.VariablesRequestFrame;
22
import dongfang.mkt.frames.VersionRequestFrame;
22
import dongfang.mkt.frames.VersionRequestFrame;
-
 
23
import dongfang.mkt.frames.WriteIMUConfigurationRequestFrame;
-
 
24
import dongfang.mkt.frames.WriteParamSetRequestFrame;
Line 23... Line 25...
23
 
25
 
24
public interface RequestFrameVisitor {
26
public interface RequestFrameVisitor {
25
        // void visit(RequestFrame f) throws IOException;
27
        // void visit(RequestFrame f) throws IOException;
26
        void visit(AnalogDebugLabelRequestFrame f) throws IOException;
28
        void visit(AnalogDebugLabelRequestFrame f) throws IOException;
Line 33... Line 35...
33
        void visit(AllDisplaysRequestFrame f) throws IOException;
35
        void visit(AllDisplaysRequestFrame f) throws IOException;
34
        void visit(VariablesRequestFrame f) throws IOException;
36
        void visit(VariablesRequestFrame f) throws IOException;
35
        void visit(ExternalControlRequestFrame f) throws IOException;
37
        void visit(ExternalControlRequestFrame f) throws IOException;
36
        void visit(ResetRequestFrame f) throws IOException;
38
        void visit(ResetRequestFrame f) throws IOException;
37
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
39
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
38
        void visit(UniversalReadParamSetRequestFrame f) throws IOException;
40
        void visit(ReadParamSetRequestFrame f) throws IOException;
39
        void visit(UniversalWriteParamSetRequestFrame f) throws IOException;
41
        void visit(WriteParamSetRequestFrame f) throws IOException;
40
        void visit(SetCompassHeadingRequestFrame f) throws IOException;
42
        void visit(SetCompassHeadingRequestFrame f) throws IOException;
41
        void visit(ReadExternalControlRequestFrame f) throws IOException;
43
        void visit(ReadExternalControlRequestFrame f) throws IOException;
42
        void visit(OSDDataRequestFrame f) throws IOException;
44
        void visit(OSDDataRequestFrame f) throws IOException;
43
        void visit(CompassHeadingRequestFrame f) throws IOException;
45
        void visit(CompassHeadingRequestFrame f) throws IOException;
-
 
46
        void visit(ReadIMUConfigurationRequestFrame f) throws IOException;
-
 
47
        void visit(WriteIMUConfigurationRequestFrame f) throws IOException;
44
}
48
}
45
49