Subversion Repositories Projects

Rev

Rev 1611 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1568 - 1
package dongfang.mkt.frames;
2
 
3
import java.io.IOException;
4
 
1688 - 5
/*
1568 - 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;
1688 - 16
        void visit(ReadVariablesRequestFrame f) throws IOException;
1568 - 17
        void visit(ExternalControlRequestFrame f) throws IOException;
18
        void visit(ResetRequestFrame f) throws IOException;
19
        void visit(ChangeParameterSetRequestFrame f) throws IOException;
1611 - 20
        void visit(ReadParamSetRequestFrame f) throws IOException;
21
        void visit(WriteParamSetRequestFrame f) throws IOException;
1568 - 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;
1688 - 26
}
27
*/