Rev 1536 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1536 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | |||
6 | public abstract class RequestFrame extends Frame { |
||
7 | protected RequestFrame(int address) { |
||
8 | super(address); |
||
9 | } |
||
10 | |||
11 | // public abstract char getId(); |
||
12 | |||
13 | public abstract void accept(RequestFrameVisitor o) throws IOException; |
||
14 | } |