Package org.menacheri.jetclient.event.impl

Examples of org.menacheri.jetclient.event.impl.ChangeAttributeEvent


    return event;
  }

  public static Event changeAttributeEvent(String key, Object value)
  {
    ChangeAttributeEvent changeAttributeEvent = new ChangeAttributeEvent();
    changeAttributeEvent.setType(CHANGE_ATTRIBUTE);
    changeAttributeEvent.setKey(key);
    changeAttributeEvent.setValue(value);
    return changeAttributeEvent;
  }
View Full Code Here


    return event;
  }

  public static Event changeAttributeEvent(String key, Object value)
  {
    ChangeAttributeEvent changeAttributeEvent = new ChangeAttributeEvent();
    changeAttributeEvent.setType(CHANGE_ATTRIBUTE);
    changeAttributeEvent.setKey(key);
    changeAttributeEvent.setValue(value);
    return changeAttributeEvent;
  }
View Full Code Here

TOP

Related Classes of org.menacheri.jetclient.event.impl.ChangeAttributeEvent

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.