1 19 20 21 package org.netbeans.modules.palette; 22 23 import java.beans.PropertyChangeListener ; 24 import java.util.EventListener ; 25 26 31 public interface ModelListener extends PropertyChangeListener { 32 33 public static final String PROP_SELECTED_ITEM = "selectedItem"; 34 35 public void categoriesAdded( Category[] addedCategories ); 36 37 public void categoriesRemoved( Category[] removedCategories ); 38 39 public void categoriesReordered(); 40 } 41 | Popular Tags |