1 package de.matthias_burbach.deputy.core.project; 2 3 4 /*** 5 * Is a tree node that represents a project in one way or another. 6 * 7 * @author Matthias Burbach 8 */ 9 public interface ProjectHolderTreeNode { 10 /*** 11 * @return The project associated with this tree node. 12 */ 13 Project getProject(); 14 }