01: package fr.aliacom.common.ui.tree;
02:
03: import fr.aliacom.commands.Command;
04:
05: /**
06: * @author tom
07: *
08: * (C) 2001, 2002 Thomas Cataldo
09: */
10: public interface ICommandTreeNode extends ITreeNode {
11:
12: /**
13: *
14: * @return Command the command executed when this node is selected
15: */
16: Command getCommand();
17:
18: }
|