1 19 package org.netbeans.modules.xml.catalog.spi; 20 21 import java.awt.Image ; 22 import java.beans.*; 23 24 31 public interface CatalogDescriptor { 32 33 36 public static final String PROP_CATALOG_ICON = "ca-icon"; 38 41 public static final String PROP_CATALOG_NAME = "ca-name"; 43 46 public static final String PROP_CATALOG_DESC = "ca-desc"; 48 53 public Image getIcon(int type); 54 55 58 public String getDisplayName(); 59 60 63 public String getShortDescription(); 64 65 66 public void addPropertyChangeListener(PropertyChangeListener l); 67 68 69 public void removePropertyChangeListener(PropertyChangeListener l); 70 } 71 | Popular Tags |