Subversion Repositories Projects

Rev

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

Rev Author Line No. Line
1535 - 1
package dongfang.mkt.frames;
2
 
3
import java.io.IOException;
4
 
5
 
6
public class AnalogDebugLabelRequestFrame extends RequestFrame {
7
        int channel;
8
 
1545 - 9
        public AnalogDebugLabelRequestFrame(int address, int channel) {
1535 - 10
                super(address);
11
                this.channel = channel;
12
        }
13
 
14
        public int getChannel() {
15
                return channel;
16
        }
17
 
18
        public void accept(RequestFrameVisitor o) throws IOException {
19
                o.visit(this);
20
        }
21
}