Blame |
Last modification |
View Log
| RSS feed
package dongfang.mkt.frames;
public class SingleDisplayResponseFrame
extends ResponseFrame
{
private int item
;
private char[] text
;
public SingleDisplayResponseFrame
(int address
) {
super(address
);
}
@
Override
public boolean isResponseTo
(RequestFrame r
) {
return r
instanceof SingleDisplayRequestFrame
;
}
public int getItem
() {
return item
;
}
public void setItem
(int item
) {
this.
item = item
;
}
public char[] getText
() {
return text
;
}
public void setText
(char[] text
) {
this.
text = text
;
}
}