Subversion Repositories Projects

Rev

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

Rev 1611 Rev 1688
Line 1... Line 1...
1
package dongfang.mkt.frames;
1
package dongfang.mkt.frames;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import java.io.IOException;
3
import java.io.IOException;
4
 
4
 
5
 
5
/*
6
public interface RequestFrameVisitor {
6
public interface RequestFrameVisitor {
7
        // void visit(RequestFrame f) throws IOException;
7
        // void visit(RequestFrame f) throws IOException;
8
        void visit(AnalogDebugLabelRequestFrame f) throws IOException;
8
        void visit(AnalogDebugLabelRequestFrame f) throws IOException;
9
        void visit(DebugRequestFrame f) throws IOException;
9
        void visit(DebugRequestFrame f) throws IOException;
10
    void visit(LoopbackTestRequestFrame f) throws IOException;
10
    void visit(LoopbackTestRequestFrame f) throws IOException;
11
        void visit(MotorTestRequestFrame f) throws IOException;
11
        void visit(MotorTestRequestFrame f) throws IOException;
12
        void visit(VersionRequestFrame f) throws IOException;
12
        void visit(VersionRequestFrame f) throws IOException;
13
        void visit(AttitudeDataRequestFrame f) throws IOException;
13
        void visit(AttitudeDataRequestFrame f) throws IOException;
14
        void visit(SingleDisplayRequestFrame f) throws IOException;
14
        void visit(SingleDisplayRequestFrame f) throws IOException;
15
        void visit(AllDisplaysRequestFrame f) throws IOException;
15
        void visit(AllDisplaysRequestFrame f) throws IOException;
16
        void visit(VariablesRequestFrame f) throws IOException;
16
        void visit(ReadVariablesRequestFrame f) throws IOException;
17
        void visit(ExternalControlRequestFrame f) throws IOException;
17
        void visit(ExternalControlRequestFrame f) throws IOException;
18
        void visit(ResetRequestFrame f) throws IOException;
18
        void visit(ResetRequestFrame f) throws IOException;
19
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
19
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
20
        void visit(ReadParamSetRequestFrame f) throws IOException;
20
        void visit(ReadParamSetRequestFrame f) throws IOException;
21
        void visit(WriteParamSetRequestFrame f) throws IOException;
21
        void visit(WriteParamSetRequestFrame f) throws IOException;
22
        void visit(SetCompassHeadingRequestFrame f) throws IOException;
22
        void visit(SetCompassHeadingRequestFrame f) throws IOException;
23
        void visit(ReadExternalControlRequestFrame f) throws IOException;
23
        void visit(ReadExternalControlRequestFrame f) throws IOException;
24
        void visit(OSDDataRequestFrame f) throws IOException;
-
 
25
        void visit(CompassHeadingRequestFrame f) throws IOException;
24
        void visit(OSDDataRequestFrame f) throws IOException;
-
 
25
        void visit(CompassHeadingRequestFrame f) throws IOException;
-
 
26
}
26
}
27
*/