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

How to use
INodeListener
in
jadex.base.gui.asynctree

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

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

/**
 * Add a node. Informs listeners.
 */
public void addNode(ITreeNode node)
{
  added.put(node.getId(), node);
  INodeListener[] lis = nodelisteners.toArray(new INodeListener[nodelisteners.size()]);
  for(int i = 0; i < lis.length; i++)
  {
    lis[i].nodeAdded(node);
  }
  for(int i = 0; i < node.getCachedChildren().size(); i++)
  {
    addNode((ITreeNode)node.getCachedChildren().get(i));
  }
}
origin: org.activecomponents.jadex/jadex-tools-base

for (int i = 0; i < lis.length; i++)
  lis[i].nodeRemoved(node);
jadex.base.gui.asynctreeINodeListener

Javadoc

Notified when nodes are added or removed from the component tree.

Most used methods

  • nodeAdded
    A node was added.
  • nodeRemoved
    A node was removed.

Popular in Java

  • Finding current android device location
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • onCreateOptionsMenu (Activity)
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Collectors (java.util.stream)
  • JButton (javax.swing)
  • JOptionPane (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • From CI to AI: The AI layer in your organization
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