Subversion Repositories Projects

Rev

Rev 1695 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1695 Rev 1696
1
package dongfang.mkt;
1
package dongfang.mkt;
2
 
2
 
3
import java.io.IOException;
3
import java.io.IOException;
4
 
4
 
5
import dongfang.mkt.frames.AllDisplaysRequestFrame;
5
import dongfang.mkt.frames.AllDisplaysRequestFrame;
6
import dongfang.mkt.frames.AnalogDebugLabelRequestFrame;
6
import dongfang.mkt.frames.AnalogDebugLabelRequestFrame;
7
import dongfang.mkt.frames.AttitudeDataRequestFrame;
7
import dongfang.mkt.frames.AttitudeDataRequestFrame;
8
import dongfang.mkt.frames.ChangeParameterSetRequestFrame;
8
import dongfang.mkt.frames.ChangeParameterSetRequestFrame;
9
import dongfang.mkt.frames.CompassHeadingRequestFrame;
9
import dongfang.mkt.frames.CompassHeadingRequestFrame;
10
import dongfang.mkt.frames.DCMMatrixRequestFrame;
10
import dongfang.mkt.frames.DCMMatrixRequestFrame;
11
import dongfang.mkt.frames.DebugRequestFrame;
11
import dongfang.mkt.frames.DebugRequestFrame;
12
import dongfang.mkt.frames.ExternalControlRequestFrame;
12
import dongfang.mkt.frames.ExternalControlRequestFrame;
13
import dongfang.mkt.frames.LoopbackTestRequestFrame;
13
import dongfang.mkt.frames.LoopbackTestRequestFrame;
14
import dongfang.mkt.frames.MotorTestRequestFrame;
14
import dongfang.mkt.frames.MotorTestRequestFrame;
15
import dongfang.mkt.frames.OSDDataRequestFrame;
15
import dongfang.mkt.frames.OSDDataRequestFrame;
-
 
16
import dongfang.mkt.frames.ProfilerLabelRequestFrame;
-
 
17
import dongfang.mkt.frames.ProfilerRequestFrame;
16
import dongfang.mkt.frames.ReadExternalControlRequestFrame;
18
import dongfang.mkt.frames.ReadExternalControlRequestFrame;
17
import dongfang.mkt.frames.ReadIMUConfigurationRequestFrame;
19
import dongfang.mkt.frames.ReadIMUConfigurationRequestFrame;
18
import dongfang.mkt.frames.ReadMotorMixerRequestFrame;
20
import dongfang.mkt.frames.ReadMotorMixerRequestFrame;
19
import dongfang.mkt.frames.ReadParamSetRequestFrame;
21
import dongfang.mkt.frames.ReadParamSetRequestFrame;
20
import dongfang.mkt.frames.ReadRCChannelsRequestFrame;
22
import dongfang.mkt.frames.ReadRCChannelsRequestFrame;
21
import dongfang.mkt.frames.ReadVariablesRequestFrame;
23
import dongfang.mkt.frames.ReadVariablesRequestFrame;
22
import dongfang.mkt.frames.ResetRequestFrame;
24
import dongfang.mkt.frames.ResetRequestFrame;
23
import dongfang.mkt.frames.SetCompassHeadingRequestFrame;
25
import dongfang.mkt.frames.SetCompassHeadingRequestFrame;
24
import dongfang.mkt.frames.SingleDisplayRequestFrame;
26
import dongfang.mkt.frames.SingleDisplayRequestFrame;
25
import dongfang.mkt.frames.VersionRequestFrame;
27
import dongfang.mkt.frames.VersionRequestFrame;
26
import dongfang.mkt.frames.WriteIMUConfigurationRequestFrame;
28
import dongfang.mkt.frames.WriteIMUConfigurationRequestFrame;
27
import dongfang.mkt.frames.WriteMotorMixerRequestFrame;
29
import dongfang.mkt.frames.WriteMotorMixerRequestFrame;
28
import dongfang.mkt.frames.WriteParamSetRequestFrame;
30
import dongfang.mkt.frames.WriteParamSetRequestFrame;
29
 
31
 
30
public interface RequestFrameVisitor {
32
public interface RequestFrameVisitor {
31
        // void visit(RequestFrame f) throws IOException;
33
        // void visit(RequestFrame f) throws IOException;
32
        void visit(AnalogDebugLabelRequestFrame f) throws IOException;
34
        void visit(AnalogDebugLabelRequestFrame f) throws IOException;
-
 
35
        void visit(ProfilerLabelRequestFrame f) throws IOException;
33
        void visit(DebugRequestFrame f) throws IOException;
36
        void visit(DebugRequestFrame f) throws IOException;
-
 
37
        void visit(ProfilerRequestFrame f) throws IOException;
34
    void visit(LoopbackTestRequestFrame f) throws IOException;
38
    void visit(LoopbackTestRequestFrame f) throws IOException;
35
        void visit(MotorTestRequestFrame f) throws IOException;
39
        void visit(MotorTestRequestFrame f) throws IOException;
36
        void visit(VersionRequestFrame f) throws IOException;
40
        void visit(VersionRequestFrame f) throws IOException;
37
        void visit(AttitudeDataRequestFrame f) throws IOException;
41
        void visit(AttitudeDataRequestFrame f) throws IOException;
38
        void visit(SingleDisplayRequestFrame f) throws IOException;
42
        void visit(SingleDisplayRequestFrame f) throws IOException;
39
        void visit(AllDisplaysRequestFrame f) throws IOException;
43
        void visit(AllDisplaysRequestFrame f) throws IOException;
40
        void visit(ReadVariablesRequestFrame f) throws IOException;
44
        void visit(ReadVariablesRequestFrame f) throws IOException;
41
        void visit(ExternalControlRequestFrame f) throws IOException;
45
        void visit(ExternalControlRequestFrame f) throws IOException;
42
        void visit(ResetRequestFrame f) throws IOException;
46
        void visit(ResetRequestFrame f) throws IOException;
43
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
47
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
44
        void visit(ReadParamSetRequestFrame f) throws IOException;
48
        void visit(ReadParamSetRequestFrame f) throws IOException;
45
        void visit(ReadIMUConfigurationRequestFrame f) throws IOException;
49
        void visit(ReadIMUConfigurationRequestFrame f) throws IOException;
46
        void visit(ReadMotorMixerRequestFrame f) throws IOException;
50
        void visit(ReadMotorMixerRequestFrame f) throws IOException;
47
        void visit(WriteParamSetRequestFrame f) throws IOException;
51
        void visit(WriteParamSetRequestFrame f) throws IOException;
48
        void visit(SetCompassHeadingRequestFrame f) throws IOException;
52
        void visit(SetCompassHeadingRequestFrame f) throws IOException;
49
        void visit(ReadExternalControlRequestFrame f) throws IOException;
53
        void visit(ReadExternalControlRequestFrame f) throws IOException;
50
        void visit(OSDDataRequestFrame f) throws IOException;
54
        void visit(OSDDataRequestFrame f) throws IOException;
51
        void visit(CompassHeadingRequestFrame f) throws IOException;
55
        void visit(CompassHeadingRequestFrame f) throws IOException;
52
        void visit(WriteMotorMixerRequestFrame f) throws IOException;
56
        void visit(WriteMotorMixerRequestFrame f) throws IOException;
53
        void visit(WriteIMUConfigurationRequestFrame f) throws IOException;
57
        void visit(WriteIMUConfigurationRequestFrame f) throws IOException;
54
        void visit(ReadRCChannelsRequestFrame f) throws IOException;
58
        void visit(ReadRCChannelsRequestFrame f) throws IOException;
55
        void visit(DCMMatrixRequestFrame f) throws IOException;
59
        void visit(DCMMatrixRequestFrame f) throws IOException;
56
}
60
}