1 package cz
.cvut
.promod
.services
.projectService
.treeProjectNode
;
3 import com
.jgoodies
.binding
.value
.ValueModel
;
5 import javax
.swing
.tree
.DefaultMutableTreeNode
;
8 * ProMod, master thesis project
9 * User: Petr Zverina, petr.zverina@gmail.com
10 * Date: 20:44:48, 13.10.2009
14 * Common interface for project items.
16 public interface ProjectItem
{
19 * @return the display name of the project item
21 public String
getDisplayName();
24 * Sets the project item display name.
26 * @param displayName new display name
28 public void setDisplayName(final String displayName
);