![JAR search and dependency download from the Maven repository](/logo.png)
org.appdapter.gui.api.ScreenBoxTreeNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.appdapter.lib.gui Show documentation
Show all versions of org.appdapter.lib.gui Show documentation
Appdapter Maven project including Java and Scala, produces jar, not bundle. Excludes concrete SLF4J binding.
The newest version!
package org.appdapter.gui.api;
import javax.swing.tree.MutableTreeNode;
import javax.swing.tree.TreeNode;
import org.appdapter.api.trigger.Box;
public interface ScreenBoxTreeNode extends TreeNode {
public abstract void setDisplayContext(DisplayContext dc);
public abstract DisplayContext getDisplayContext();
public abstract Box getBox();
public abstract Iterable getTreeChildren();
public abstract Object getTreeRepresentedObject();
public abstract ScreenBoxTreeNode getScreenBoxTreeParent();
public abstract ScreenBoxTreeNode findDescendantNodeForBox(Box b);
public abstract void add(MutableTreeNode childNode);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy