surgemsg.java
来自「tinyos最新版」· Java 代码 · 共 293 行
JAVA
293 行
/** * This class is automatically generated by mig. DO NOT EDIT THIS FILE. * This class implements a Java interface to the 'SurgeMsg' * message type. */package net.tinyos.surge;public class SurgeMsg extends net.tinyos.message.Message { /** The default size of this message type in bytes. */ public static final int DEFAULT_MESSAGE_SIZE = 5; /** The Active Message type associated with this message. */ public static final int AM_TYPE = 17; /** Create a new SurgeMsg of size 5. */ public SurgeMsg() { super(DEFAULT_MESSAGE_SIZE); amTypeSet(AM_TYPE); } /** Create a new SurgeMsg of the given data_length. */ public SurgeMsg(int data_length) { super(data_length); amTypeSet(AM_TYPE); } /** * Create a new SurgeMsg with the given data_length * and base offset. */ public SurgeMsg(int data_length, int base_offset) { super(data_length, base_offset); amTypeSet(AM_TYPE); } /** * Create a new SurgeMsg using the given byte array * as backing store. */ public SurgeMsg(byte[] data) { super(data); amTypeSet(AM_TYPE); } /** * Create a new SurgeMsg using the given byte array * as backing store, with the given base offset. */ public SurgeMsg(byte[] data, int base_offset) { super(data, base_offset); amTypeSet(AM_TYPE); } /** * Create a new SurgeMsg using the given byte array * as backing store, with the given base offset and data length. */ public SurgeMsg(byte[] data, int base_offset, int data_length) { super(data, base_offset, data_length); amTypeSet(AM_TYPE); } /** * Create a new SurgeMsg embedded in the given message * at the given base offset. */ public SurgeMsg(net.tinyos.message.Message msg, int base_offset) { super(msg, base_offset, DEFAULT_MESSAGE_SIZE); amTypeSet(AM_TYPE); } /** * Create a new SurgeMsg embedded in the given message * at the given base offset and length. */ public SurgeMsg(net.tinyos.message.Message msg, int base_offset, int data_length) { super(msg, base_offset, data_length); amTypeSet(AM_TYPE); } /** /* Return a String representation of this message. Includes the * message type name and the non-indexed field values. */ public String toString() { String s = "Message <SurgeMsg> \n"; try { s += " [type=0x"+Long.toHexString(get_type())+"]\n"; } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ } try { s += " [reading=0x"+Long.toHexString(get_reading())+"]\n"; } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ } try { s += " [parentaddr=0x"+Long.toHexString(get_parentaddr())+"]\n"; } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ } return s; } // Message-type-specific access methods appear below. ///////////////////////////////////////////////////////// // Accessor methods for field: type // Field type: short, unsigned // Offset (bits): 0 // Size (bits): 8 ///////////////////////////////////////////////////////// /** * Return whether the field 'type' is signed (false). */ public static boolean isSigned_type() { return false; } /** * Return whether the field 'type' is an array (false). */ public static boolean isArray_type() { return false; } /** * Return the offset (in bytes) of the field 'type' */ public static int offset_type() { return (0 / 8); } /** * Return the offset (in bits) of the field 'type' */ public static int offsetBits_type() { return 0; } /** * Return the value (as a short) of the field 'type' */ public short get_type() { return (short)getUIntElement(offsetBits_type(), 8); } /** * Set the value of the field 'type' */ public void set_type(short value) { setUIntElement(offsetBits_type(), 8, value); } /** * Return the size, in bytes, of the field 'type' */ public static int size_type() { return (8 / 8); } /** * Return the size, in bits, of the field 'type' */ public static int sizeBits_type() { return 8; } ///////////////////////////////////////////////////////// // Accessor methods for field: reading // Field type: int, unsigned // Offset (bits): 8 // Size (bits): 16 ///////////////////////////////////////////////////////// /** * Return whether the field 'reading' is signed (false). */ public static boolean isSigned_reading() { return false; } /** * Return whether the field 'reading' is an array (false). */ public static boolean isArray_reading() { return false; } /** * Return the offset (in bytes) of the field 'reading' */ public static int offset_reading() { return (8 / 8); } /** * Return the offset (in bits) of the field 'reading' */ public static int offsetBits_reading() { return 8; } /** * Return the value (as a int) of the field 'reading' */ public int get_reading() { return (int)getUIntElement(offsetBits_reading(), 16); } /** * Set the value of the field 'reading' */ public void set_reading(int value) { setUIntElement(offsetBits_reading(), 16, value); } /** * Return the size, in bytes, of the field 'reading' */ public static int size_reading() { return (16 / 8); } /** * Return the size, in bits, of the field 'reading' */ public static int sizeBits_reading() { return 16; } ///////////////////////////////////////////////////////// // Accessor methods for field: parentaddr // Field type: int, unsigned // Offset (bits): 24 // Size (bits): 16 ///////////////////////////////////////////////////////// /** * Return whether the field 'parentaddr' is signed (false). */ public static boolean isSigned_parentaddr() { return false; } /** * Return whether the field 'parentaddr' is an array (false). */ public static boolean isArray_parentaddr() { return false; } /** * Return the offset (in bytes) of the field 'parentaddr' */ public static int offset_parentaddr() { return (24 / 8); } /** * Return the offset (in bits) of the field 'parentaddr' */ public static int offsetBits_parentaddr() { return 24; } /** * Return the value (as a int) of the field 'parentaddr' */ public int get_parentaddr() { return (int)getUIntElement(offsetBits_parentaddr(), 16); } /** * Set the value of the field 'parentaddr' */ public void set_parentaddr(int value) { setUIntElement(offsetBits_parentaddr(), 16, value); } /** * Return the size, in bytes, of the field 'parentaddr' */ public static int size_parentaddr() { return (16 / 8); } /** * Return the size, in bits, of the field 'parentaddr' */ public static int sizeBits_parentaddr() { return 16; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?