congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
TreeModelListener.treeNodesRemoved
Code IndexAdd Tabnine to your IDE (free)

How to use
treeNodesRemoved
method
in
jadex.base.gui.asynctree.TreeModelListener

Best Java code snippets using jadex.base.gui.asynctree.TreeModelListener.treeNodesRemoved (Showing top 2 results out of 315)

origin: org.activecomponents.jadex/jadex-tools-base

  /**
   * Inform listeners that a node has been removed
   */
  public void fireNodesRemoved(ITreeNode parent, ITreeNode[] childs, int[] indices)
  {
    List<ITreeNode> path = buildTreePath(parent);

//        System.err.println(""+hashCode()+" Node removed: "+child+", "+index+", "+path);

    for(int i = 0; i < listeners.size(); i++)
    {
      listeners.get(i).treeNodesRemoved(new AsyncTreeModelEvent(this, path.toArray(), indices, childs));
    }
  }

origin: org.activecomponents.jadex/jadex-tools-base

  /**
   * Inform listeners that a node has been removed
   */
  public void fireNodeRemoved(ITreeNode parent, ITreeNode child, int index)
  {
    List<ITreeNode> path = buildTreePath(parent);

//        System.err.println(""+hashCode()+" Node removed: "+child+", "+index+", "+path);

    for(int i = 0; i < listeners.size(); i++)
    {
      listeners.get(i).treeNodesRemoved(
        new AsyncTreeModelEvent(this, path.toArray(), new int[]{index}, new Object[]{child}));
    }
  }

jadex.base.gui.asynctreeTreeModelListenertreeNodesRemoved

Popular methods of TreeModelListener

  • treeNodesChanged
  • treeNodesInserted
  • treeStructureChanged

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • getSupportFragmentManager (FragmentActivity)
  • requestLocationUpdates (LocationManager)
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now