public class ClojureWatchesNodeModel implements NodeModel {
private static final String ICON_BASE ="org/enclojure/clojure/debugger/resources/watchesView/Watch";
public String getDisplayName(Object node) throws UnknownTypeException {
if (!(node instanceof ClojureElWatch)) throw new UnknownTypeException(node);
ClojureElWatch watch = (ClojureElWatch) node;
return watch.getExpression();
}