Package javax.help.event

Examples of javax.help.event.HelpSetEvent


    /**
     * Fires a helpSetRemoved event.
     */
    protected void fireHelpSetRemoved(Object source, HelpSet helpset){
  Object[] listeners = listenerList.getListenerList();
  HelpSetEvent e = null;

  for (int i = listeners.length - 2; i >= 0; i -= 2) {
      if (listeners[i] == HelpSetListener.class) {
    if (e == null) {
        e = new HelpSetEvent(this, helpset,
           HelpSetEvent.HELPSET_REMOVED);
    }
    ((HelpSetListener)listeners[i+1]).helpSetRemoved(e);
      }        
  }
View Full Code Here

TOP

Related Classes of javax.help.event.HelpSetEvent

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.