Home | History | Annotate | Download | only in sink

Lines Matching defs:Contact

53                 0x09, 0x55,                         //     USAGE (Contact Count Maximum)
59 0x09, 0x54, // USAGE (Contact Count)
77 0x09, 0x51, // USAGE (Contact Identifier)
100 public void generateReport(ByteBuffer buffer, Contact[] contacts, int contactCount) {
103 // Contact Count
107 final Contact contact = contacts[i];
108 // Tip Switch, In Range, Contact Identifier
109 buffer.put((byte)((contact.id << 2) | 0x03));
111 buffer.put((byte)contact.x).put((byte)(contact.x >> 8));
113 buffer.put((byte)contact.y).put((byte)(contact.y >> 8));
124 public static final class Contact {