1 19 20 package org.netbeans.spi.viewmodel; 21 22 23 29 public interface NodeModel extends Model { 30 31 36 public abstract String getDisplayName (Object node) 37 throws UnknownTypeException; 38 39 46 public abstract String getIconBase (Object node) 47 throws UnknownTypeException; 48 49 56 public abstract String getShortDescription (Object node) 57 throws UnknownTypeException; 58 59 64 public abstract void addModelListener (ModelListener l); 65 66 71 public abstract void removeModelListener (ModelListener l); 72 } 73 | Popular Tags |