Subversion Repositories Projects

Rev

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