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

📄 oscoperesetmsg.java

📁 tinyos最新版
💻 JAVA
字号:
/** * This class is automatically generated by mig. DO NOT EDIT THIS FILE. * This class implements a Java interface to the 'OscopeResetMsg' * message type. */package net.tinyos.oscope;public class OscopeResetMsg extends net.tinyos.message.Message {    /** The default size of this message type in bytes. */    public static final int DEFAULT_MESSAGE_SIZE = 0;    /** The Active Message type associated with this message. */    public static final int AM_TYPE = 32;    /** Create a new OscopeResetMsg of size 0. */    public OscopeResetMsg() {        super(DEFAULT_MESSAGE_SIZE);        amTypeSet(AM_TYPE);    }    /** Create a new OscopeResetMsg of the given data_length. */    public OscopeResetMsg(int data_length) {        super(data_length);        amTypeSet(AM_TYPE);    }    /**     * Create a new OscopeResetMsg with the given data_length     * and base offset.     */    public OscopeResetMsg(int data_length, int base_offset) {        super(data_length, base_offset);        amTypeSet(AM_TYPE);    }    /**     * Create a new OscopeResetMsg using the given byte array     * as backing store.     */    public OscopeResetMsg(byte[] data) {        super(data);        amTypeSet(AM_TYPE);    }    /**     * Create a new OscopeResetMsg using the given byte array     * as backing store, with the given base offset.     */    public OscopeResetMsg(byte[] data, int base_offset) {        super(data, base_offset);        amTypeSet(AM_TYPE);    }    /**     * Create a new OscopeResetMsg using the given byte array     * as backing store, with the given base offset and data length.     */    public OscopeResetMsg(byte[] data, int base_offset, int data_length) {        super(data, base_offset, data_length);        amTypeSet(AM_TYPE);    }    /**     * Create a new OscopeResetMsg embedded in the given message     * at the given base offset.     */    public OscopeResetMsg(net.tinyos.message.Message msg, int base_offset) {        super(msg, base_offset, DEFAULT_MESSAGE_SIZE);        amTypeSet(AM_TYPE);    }    /**     * Create a new OscopeResetMsg embedded in the given message     * at the given base offset and length.     */    public OscopeResetMsg(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 <OscopeResetMsg> \n";      return s;    }    // Message-type-specific access methods appear below.}

⌨️ 快捷键说明

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