]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tests/cc2420/LplBroadcastCountToLeds/RadioCountMsg.java
Merge TinyOS 2.1.1 into master.
[tinyos-2.x.git] / apps / tests / cc2420 / LplBroadcastCountToLeds / RadioCountMsg.java
diff --git a/apps/tests/cc2420/LplBroadcastCountToLeds/RadioCountMsg.java b/apps/tests/cc2420/LplBroadcastCountToLeds/RadioCountMsg.java
deleted file mode 100644 (file)
index 46f7c7a..0000000
+++ /dev/null
@@ -1,158 +0,0 @@
-/**
- * This class is automatically generated by mig. DO NOT EDIT THIS FILE.
- * This class implements a Java interface to the 'RadioCountMsg'
- * message type.
- */
-
-public class RadioCountMsg extends net.tinyos.message.Message {
-
-    /** The default size of this message type in bytes. */
-    public static final int DEFAULT_MESSAGE_SIZE = 2;
-
-    /** The Active Message type associated with this message. */
-    public static final int AM_TYPE = 134;
-
-    /** Create a new RadioCountMsg of size 2. */
-    public RadioCountMsg() {
-        super(DEFAULT_MESSAGE_SIZE);
-        amTypeSet(AM_TYPE);
-    }
-
-    /** Create a new RadioCountMsg of the given data_length. */
-    public RadioCountMsg(int data_length) {
-        super(data_length);
-        amTypeSet(AM_TYPE);
-    }
-
-    /**
-     * Create a new RadioCountMsg with the given data_length
-     * and base offset.
-     */
-    public RadioCountMsg(int data_length, int base_offset) {
-        super(data_length, base_offset);
-        amTypeSet(AM_TYPE);
-    }
-
-    /**
-     * Create a new RadioCountMsg using the given byte array
-     * as backing store.
-     */
-    public RadioCountMsg(byte[] data) {
-        super(data);
-        amTypeSet(AM_TYPE);
-    }
-
-    /**
-     * Create a new RadioCountMsg using the given byte array
-     * as backing store, with the given base offset.
-     */
-    public RadioCountMsg(byte[] data, int base_offset) {
-        super(data, base_offset);
-        amTypeSet(AM_TYPE);
-    }
-
-    /**
-     * Create a new RadioCountMsg using the given byte array
-     * as backing store, with the given base offset and data length.
-     */
-    public RadioCountMsg(byte[] data, int base_offset, int data_length) {
-        super(data, base_offset, data_length);
-        amTypeSet(AM_TYPE);
-    }
-
-    /**
-     * Create a new RadioCountMsg embedded in the given message
-     * at the given base offset.
-     */
-    public RadioCountMsg(net.tinyos.message.Message msg, int base_offset) {
-        super(msg, base_offset, DEFAULT_MESSAGE_SIZE);
-        amTypeSet(AM_TYPE);
-    }
-
-    /**
-     * Create a new RadioCountMsg embedded in the given message
-     * at the given base offset and length.
-     */
-    public RadioCountMsg(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 <RadioCountMsg> \n";
-      try {
-        s += "  [counter=0x"+Long.toHexString(get_counter())+"]\n";
-      } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
-      return s;
-    }
-
-    // Message-type-specific access methods appear below.
-
-    /////////////////////////////////////////////////////////
-    // Accessor methods for field: counter
-    //   Field type: int, unsigned
-    //   Offset (bits): 0
-    //   Size (bits): 16
-    /////////////////////////////////////////////////////////
-
-    /**
-     * Return whether the field 'counter' is signed (false).
-     */
-    public static boolean isSigned_counter() {
-        return false;
-    }
-
-    /**
-     * Return whether the field 'counter' is an array (false).
-     */
-    public static boolean isArray_counter() {
-        return false;
-    }
-
-    /**
-     * Return the offset (in bytes) of the field 'counter'
-     */
-    public static int offset_counter() {
-        return (0 / 8);
-    }
-
-    /**
-     * Return the offset (in bits) of the field 'counter'
-     */
-    public static int offsetBits_counter() {
-        return 0;
-    }
-
-    /**
-     * Return the value (as a int) of the field 'counter'
-     */
-    public int get_counter() {
-        return (int)getUIntBEElement(offsetBits_counter(), 16);
-    }
-
-    /**
-     * Set the value of the field 'counter'
-     */
-    public void set_counter(int value) {
-        setUIntBEElement(offsetBits_counter(), 16, value);
-    }
-
-    /**
-     * Return the size, in bytes, of the field 'counter'
-     */
-    public static int size_counter() {
-        return (16 / 8);
-    }
-
-    /**
-     * Return the size, in bits, of the field 'counter'
-     */
-    public static int sizeBits_counter() {
-        return 16;
-    }
-
-}