Package org.w3c.tools.resources.event

Examples of org.w3c.tools.resources.event.StructureChangedEvent


     * post an structure change event.
     * @param type The type of the event.
     */
    protected void postStructureChangedEvent(int type) {
  if ((structListener != null) && (getResourceReference() != null)) {
      StructureChangedEvent evt =
    new StructureChangedEvent(getResourceReference(), type);
      postEvent(evt);
  }
    }
View Full Code Here


     */
    protected void fireStructureChangedEvent(int type) {
  if (structListener != null) {
      ResourceReference resref = unsafeGetResourceReference();
      if (resref != null) {
    StructureChangedEvent evt =
        new StructureChangedEvent(resref, type);
    fireStructureChangedEvent(evt);
      }
  }
    }
View Full Code Here

TOP

Related Classes of org.w3c.tools.resources.event.StructureChangedEvent

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.