Rev 1564 | Go to most recent revision | Details | 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 | import dongfang.mkt.RequestFrameVisitor; |
||
6 | |||
7 | public abstract class RequestFrame extends Frame { |
||
8 | protected RequestFrame(int address) { |
||
9 | super(address); |
||
10 | } |
||
11 | |||
12 | // public abstract char getId(); |
||
13 | |||
14 | public abstract void accept(RequestFrameVisitor o) throws IOException; |
||
15 | } |