jadex.base.gui.asynctree.INodeHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-tools-base Show documentation
Show all versions of jadex-tools-base Show documentation
Reusable classes for starting Jadex, running test cases and building JCC plugins. No GUI classes included.
package jadex.base.gui.asynctree;
/**
* Node handlers provide additional information for nodes such as icon overlays
* and popup actions.
*/
public interface INodeHandler
{
/**
* Get the overlay for a node if any.
*/
public byte[] getOverlay(ITreeNode node);
}