Package com.google.gwt.chrome.crx.client.Port

Examples of com.google.gwt.chrome.crx.client.Port.Message


*/
public class EventRecordMessage extends Message {
  public static final int TYPE = MessageType.PORT_EVENT_RECORD_TYPE;

  public static EventRecordMessage create(String recordStr) {
    Message message = Message.create(TYPE);
    return message.setProperty("record", recordStr).cast();
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.chrome.crx.client.Port.Message

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.