debugmsgevent.java

来自「tinyos最新版」· Java 代码 · 共 255 行

JAVA
255
字号
/** * This class is automatically generated by mig. DO NOT EDIT THIS FILE. * This class implements a Java interface to the 'DebugMsgEvent' * message type. */package net.tinyos.sim.msg;public class DebugMsgEvent extends net.tinyos.message.Message {    /** The default size of this message type in bytes. */    public static final int DEFAULT_MESSAGE_SIZE = 512;    /** The Active Message type associated with this message. */    public static final int AM_TYPE = 1;    /** Create a new DebugMsgEvent of size 512. */    public DebugMsgEvent() {        super(DEFAULT_MESSAGE_SIZE);        amTypeSet(AM_TYPE);    }    /** Create a new DebugMsgEvent of the given data_length. */    public DebugMsgEvent(int data_length) {        super(data_length);        amTypeSet(AM_TYPE);    }    /**     * Create a new DebugMsgEvent with the given data_length     * and base offset.     */    public DebugMsgEvent(int data_length, int base_offset) {        super(data_length, base_offset);        amTypeSet(AM_TYPE);    }    /**     * Create a new DebugMsgEvent using the given byte array     * as backing store.     */    public DebugMsgEvent(byte[] data) {        super(data);        amTypeSet(AM_TYPE);    }    /**     * Create a new DebugMsgEvent using the given byte array     * as backing store, with the given base offset.     */    public DebugMsgEvent(byte[] data, int base_offset) {        super(data, base_offset);        amTypeSet(AM_TYPE);    }    /**     * Create a new DebugMsgEvent using the given byte array     * as backing store, with the given base offset and data length.     */    public DebugMsgEvent(byte[] data, int base_offset, int data_length) {        super(data, base_offset, data_length);        amTypeSet(AM_TYPE);    }    /**     * Create a new DebugMsgEvent embedded in the given message     * at the given base offset.     */    public DebugMsgEvent(net.tinyos.message.Message msg, int base_offset) {        super(msg, base_offset, DEFAULT_MESSAGE_SIZE);        amTypeSet(AM_TYPE);    }    /**     * Create a new DebugMsgEvent embedded in the given message     * at the given base offset and length.     */    public DebugMsgEvent(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 <DebugMsgEvent> \n";      try {        s += "  [debugMessage=";        for (int i = 0; i < 512; i++) {          s += "0x"+Long.toHexString(getElement_debugMessage(i) & 0xff)+" ";        }        s += "]\n";      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }      return s;    }    // Message-type-specific access methods appear below.    /////////////////////////////////////////////////////////    // Accessor methods for field: debugMessage    //   Field type: byte[], signed    //   Offset (bits): 0    //   Size of each element (bits): 8    /////////////////////////////////////////////////////////    /**     * Return whether the field 'debugMessage' is signed (true).     */    public static boolean isSigned_debugMessage() {        return true;    }    /**     * Return whether the field 'debugMessage' is an array (true).     */    public static boolean isArray_debugMessage() {        return true;    }    /**     * Return the offset (in bytes) of the field 'debugMessage'     */    public static int offset_debugMessage(int index1) {        int offset = 0;        if (index1 < 0 || index1 >= 512) throw new ArrayIndexOutOfBoundsException();        offset += 0 + index1 * 8;        return (offset / 8);    }    /**     * Return the offset (in bits) of the field 'debugMessage'     */    public static int offsetBits_debugMessage(int index1) {        int offset = 0;        if (index1 < 0 || index1 >= 512) throw new ArrayIndexOutOfBoundsException();        offset += 0 + index1 * 8;        return offset;    }    /**     * Return the entire array 'debugMessage' as a byte[]     */    public byte[] get_debugMessage() {        byte[] tmp = new byte[512];        for (int index0 = 0; index0 < numElements_debugMessage(0); index0++) {            tmp[index0] = getElement_debugMessage(index0);        }        return tmp;    }    /**     * Set the contents of the array 'debugMessage' from the given byte[]     */    public void set_debugMessage(byte[] value) {        for (int index0 = 0; index0 < value.length; index0++) {            setElement_debugMessage(index0, value[index0]);        }    }    /**     * Return an element (as a byte) of the array 'debugMessage'     */    public byte getElement_debugMessage(int index1) {        return (byte)getSIntElement(offsetBits_debugMessage(index1), 8);    }    /**     * Set an element of the array 'debugMessage'     */    public void setElement_debugMessage(int index1, byte value) {        setSIntElement(offsetBits_debugMessage(index1), 8, value);    }    /**     * Return the total size, in bytes, of the array 'debugMessage'     */    public static int totalSize_debugMessage() {        return (4096 / 8);    }    /**     * Return the total size, in bits, of the array 'debugMessage'     */    public static int totalSizeBits_debugMessage() {        return 4096;    }    /**     * Return the size, in bytes, of each element of the array 'debugMessage'     */    public static int elementSize_debugMessage() {        return (8 / 8);    }    /**     * Return the size, in bits, of each element of the array 'debugMessage'     */    public static int elementSizeBits_debugMessage() {        return 8;    }    /**     * Return the number of dimensions in the array 'debugMessage'     */    public static int numDimensions_debugMessage() {        return 1;    }    /**     * Return the number of elements in the array 'debugMessage'     */    public static int numElements_debugMessage() {        return 512;    }    /**     * Return the number of elements in the array 'debugMessage'     * for the given dimension.     */    public static int numElements_debugMessage(int dimension) {      int array_dims[] = { 512,  };        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 'debugMessage' with a String     */    public void setString_debugMessage(String s) {          int len = s.length();         int i;         for (i = 0; i < len; i++) {             setElement_debugMessage(i, (byte)s.charAt(i));         }         setElement_debugMessage(i, (byte)0); //null terminate    }    /**     * Read the array 'debugMessage' as a String     */    public String getString_debugMessage() {          char carr[] = new char[Math.min(net.tinyos.message.Message.MAX_CONVERTED_STRING_LENGTH,512)];         int i;         for (i = 0; i < carr.length; i++) {             if ((char)getElement_debugMessage(i) == (char)0) break;             carr[i] = (char)getElement_debugMessage(i);         }         return new String(carr,0,i);    }}

⌨️ 快捷键说明

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