Examples of acceptDockingAction()


Examples of com.vlsolutions.swing.docking.event.DockingActionListener.acceptDockingAction()

  /** returns false if the docking action is rejected, or true if accepted by all listeners*/
  boolean fireAcceptDockingAction(DockingActionEvent e){
    /*package protected */
    for (int i = 0; i < dockingActionListeners.size(); i++) {
      DockingActionListener listener = dockingActionListeners.get(i);
      if (!listener.acceptDockingAction(e)){
        return false;
      }
    }
    return true;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.