Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1536 |
- |
1 |
package dongfang.mkt.frames; |
|
|
2 |
|
|
|
3 |
public abstract class ResponseFrame extends Frame { |
|
|
4 |
protected ResponseFrame(int address) { |
|
|
5 |
super(address); |
|
|
6 |
} |
|
|
7 |
|
|
|
8 |
public abstract boolean isResponseTo(RequestFrame r); |
|
|
9 |
} |