()
| 131 | public abstract int getProtocolId(); |
| 132 | |
| 133 | public long getTypeId() { |
| 134 | return makeTypeId(getModuleId(), getProtocolId()); |
| 135 | } |
| 136 | |
| 137 | public static long makeTypeId(int moduleId, int protocolId) { |
| 138 | return (long)moduleId << 32 | (protocolId & 0xffff_ffffL); |
nothing calls this directly
no test coverage detected