1 19 20 package org.netbeans.spi.project.ui.support; 21 22 import java.util.List ; 23 import javax.swing.event.ChangeListener ; 24 import org.openide.nodes.Node; 25 26 36 public interface NodeList<K> { 37 42 List <K> keys(); 43 47 void addChangeListener(ChangeListener l); 52 void removeChangeListener(ChangeListener l); 53 56 Node node(K key); 57 61 void addNotify(); 62 66 void removeNotify(); 67 } 68 | Popular Tags |