All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.appdapter.gui.api.ScreenBoxTreeNode Maven / Gradle / Ivy

Go to download

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