Subversion Repositories Projects

Rev

Rev 1542 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1542 - 1
package dongfang.mkt.frames;
2
 
3
public class CompassHeadingResponseFrame extends ResponseFrame {
4
        public CompassHeadingResponseFrame(int address) {
5
                super(address);
6
        }
7
 
8
        @Override
9
        public boolean isResponseTo(RequestFrame r) {
1543 - 10
                return false ;//r instanceof CompassHeadingRequestFrame;
1542 - 11
        }
12
}