com.actelion.research.gui.dock.TreeElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.gui.dock;
import javax.swing.*;
public abstract class TreeElement {
protected TreeContainer mParent;
protected JComponent mComponent;
public TreeContainer getParent() {
return mParent;
}
public void setParent(TreeContainer parent) {
mParent = parent;
}
public JComponent getComponent() {
return mComponent;
}
public boolean isSelected() {
return false;
}
abstract protected void clearStateInfo();
abstract protected void printStatus();
}