⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 packet_msg.java

📁 elliptic curve加密源代码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/** * This class is automatically generated by mig. DO NOT EDIT THIS FILE. * This class implements a Java interface to the 'packet_msg' * message type. */public class packet_msg extends net.tinyos.message.Message {    /** The default size of this message type in bytes. */    public static final int DEFAULT_MESSAGE_SIZE = 102;    /** The Active Message type associated with this message. */    public static final int AM_TYPE = 14;    /** Create a new packet_msg of size 102. */    public packet_msg() {        super(DEFAULT_MESSAGE_SIZE);        amTypeSet(AM_TYPE);    }    /** Create a new packet_msg of the given data_length. */    public packet_msg(int data_length) {        super(data_length);        amTypeSet(AM_TYPE);    }    /**     * Create a new packet_msg with the given data_length     * and base offset.     */    public packet_msg(int data_length, int base_offset) {        super(data_length, base_offset);        amTypeSet(AM_TYPE);    }    /**     * Create a new packet_msg using the given byte array     * as backing store.     */    public packet_msg(byte[] data) {        super(data);        amTypeSet(AM_TYPE);    }    /**     * Create a new packet_msg using the given byte array     * as backing store, with the given base offset.     */    public packet_msg(byte[] data, int base_offset) {        super(data, base_offset);        amTypeSet(AM_TYPE);    }    /**     * Create a new packet_msg using the given byte array     * as backing store, with the given base offset and data length.     */    public packet_msg(byte[] data, int base_offset, int data_length) {        super(data, base_offset, data_length);        amTypeSet(AM_TYPE);    }    /**     * Create a new packet_msg embedded in the given message     * at the given base offset.     */    public packet_msg(net.tinyos.message.Message msg, int base_offset) {        super(msg, base_offset, DEFAULT_MESSAGE_SIZE);        amTypeSet(AM_TYPE);    }    /**     * Create a new packet_msg embedded in the given message     * at the given base offset and length.     */    public packet_msg(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 <packet_msg> \n";      try {        s += "  [c_len=0x"+Long.toHexString(get_c_len())+"]\n";      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }      try {        s += "  [content=";        for (int i = 0; i < 52; i++) {          s += "0x"+Long.toHexString(getElement_content(i) & 0xff)+" ";        }        s += "]\n";      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }      try {        s += "  [r_len=0x"+Long.toHexString(get_r_len())+"]\n";      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }      try {        s += "  [r=";        for (int i = 0; i < 24; i++) {          s += "0x"+Long.toHexString(getElement_r(i) & 0xff)+" ";        }        s += "]\n";      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }      try {        s += "  [s=";        for (int i = 0; i < 24; i++) {          s += "0x"+Long.toHexString(getElement_s(i) & 0xff)+" ";        }        s += "]\n";      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }      return s;    }    // Message-type-specific access methods appear below.    /////////////////////////////////////////////////////////    // Accessor methods for field: c_len    //   Field type: short, unsigned    //   Offset (bits): 0    //   Size (bits): 8    /////////////////////////////////////////////////////////    /**     * Return whether the field 'c_len' is signed (false).     */    public static boolean isSigned_c_len() {        return false;    }    /**     * Return whether the field 'c_len' is an array (false).     */    public static boolean isArray_c_len() {        return false;    }    /**     * Return the offset (in bytes) of the field 'c_len'     */    public static int offset_c_len() {        return (0 / 8);    }    /**     * Return the offset (in bits) of the field 'c_len'     */    public static int offsetBits_c_len() {        return 0;    }    /**     * Return the value (as a short) of the field 'c_len'     */    public short get_c_len() {        return (short)getUIntElement(offsetBits_c_len(), 8);    }    /**     * Set the value of the field 'c_len'     */    public void set_c_len(short value) {        setUIntElement(offsetBits_c_len(), 8, value);    }    /**     * Return the size, in bytes, of the field 'c_len'     */    public static int size_c_len() {        return (8 / 8);    }    /**     * Return the size, in bits, of the field 'c_len'     */    public static int sizeBits_c_len() {        return 8;    }    /////////////////////////////////////////////////////////    // Accessor methods for field: content    //   Field type: short[], unsigned    //   Offset (bits): 8    //   Size of each element (bits): 8    /////////////////////////////////////////////////////////    /**     * Return whether the field 'content' is signed (false).     */    public static boolean isSigned_content() {        return false;    }    /**     * Return whether the field 'content' is an array (true).     */    public static boolean isArray_content() {        return true;    }    /**     * Return the offset (in bytes) of the field 'content'     */    public static int offset_content(int index1) {        int offset = 8;        if (index1 < 0 || index1 >= 52) throw new ArrayIndexOutOfBoundsException();        offset += 0 + index1 * 8;        return (offset / 8);    }    /**     * Return the offset (in bits) of the field 'content'     */    public static int offsetBits_content(int index1) {        int offset = 8;        if (index1 < 0 || index1 >= 52) throw new ArrayIndexOutOfBoundsException();        offset += 0 + index1 * 8;        return offset;    }    /**     * Return the entire array 'content' as a short[]     */    public short[] get_content() {        short[] tmp = new short[52];        for (int index0 = 0; index0 < numElements_content(0); index0++) {            tmp[index0] = getElement_content(index0);        }        return tmp;    }    /**     * Set the contents of the array 'content' from the given short[]     */    public void set_content(short[] value) {        for (int index0 = 0; index0 < value.length; index0++) {            setElement_content(index0, value[index0]);        }    }    /**     * Return an element (as a short) of the array 'content'     */    public short getElement_content(int index1) {        return (short)getUIntElement(offsetBits_content(index1), 8);    }    /**     * Set an element of the array 'content'     */    public void setElement_content(int index1, short value) {        setUIntElement(offsetBits_content(index1), 8, value);    }    /**     * Return the total size, in bytes, of the array 'content'     */    public static int totalSize_content() {        return (416 / 8);    }    /**     * Return the total size, in bits, of the array 'content'     */    public static int totalSizeBits_content() {        return 416;    }    /**     * Return the size, in bytes, of each element of the array 'content'     */    public static int elementSize_content() {        return (8 / 8);    }    /**     * Return the size, in bits, of each element of the array 'content'     */    public static int elementSizeBits_content() {        return 8;    }    /**     * Return the number of dimensions in the array 'content'     */    public static int numDimensions_content() {        return 1;    }    /**     * Return the number of elements in the array 'content'     */    public static int numElements_content() {        return 52;    }    /**     * Return the number of elements in the array 'content'     * for the given dimension.     */    public static int numElements_content(int dimension) {      int array_dims[] = { 52,  };        if (dimension < 0 || dimension >= 1) throw new ArrayIndexOutOfBoundsException();        if (array_dims[dimension] == 0) throw new IllegalArgumentException("Array dimension "+dimension+" has unknown size");        return array_dims[dimension];    }    /**     * Fill in the array 'content' with a String     */    public void setString_content(String s) {          int len = s.length();         int i;         for (i = 0; i < len; i++) {             setElement_content(i, (short)s.charAt(i));         }         setElement_content(i, (short)0); //null terminate    }    /**     * Read the array 'content' as a String     */    public String getString_content() {          char carr[] = new char[Math.min(net.tinyos.message.Message.MAX_CONVERTED_STRING_LENGTH,52)];         int i;         for (i = 0; i < carr.length; i++) {             if ((char)getElement_content(i) == (char)0) break;             carr[i] = (char)getElement_content(i);         }         return new String(carr,0,i);    }    /////////////////////////////////////////////////////////    // Accessor methods for field: r_len    //   Field type: short, unsigned    //   Offset (bits): 424    //   Size (bits): 8    /////////////////////////////////////////////////////////    /**     * Return whether the field 'r_len' is signed (false).     */    public static boolean isSigned_r_len() {        return false;    }    /**     * Return whether the field 'r_len' is an array (false).     */    public static boolean isArray_r_len() {        return false;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -