1 19 20 package org.netbeans.modules.j2ee.dd.api.common; 21 29 public interface IconInterface { 30 31 39 public void setSmallIcon(String locale, String icon) throws VersionNotSupportedException; 40 45 public void setSmallIcon(String icon); 46 54 public void setLargeIcon(String locale, String icon) throws VersionNotSupportedException; 55 60 public void setLargeIcon(String icon); 61 68 public void setAllIcons(String [] locales, String [] smallIcons, String [] largeIcons) throws VersionNotSupportedException; 69 75 public void setIcon(org.netbeans.modules.j2ee.dd.api.common.Icon icon); 76 77 84 public String getSmallIcon(String locale) throws VersionNotSupportedException; 85 90 public String getSmallIcon(); 91 98 public String getLargeIcon(String locale) throws VersionNotSupportedException; 99 104 public String getLargeIcon(); 105 110 public org.netbeans.modules.j2ee.dd.api.common.Icon getDefaultIcon(); 111 116 public java.util.Map getAllIcons(); 117 118 124 public void removeSmallIcon(String locale) throws VersionNotSupportedException; 125 131 public void removeLargeIcon(String locale) throws VersionNotSupportedException; 132 138 public void removeIcon(String locale) throws VersionNotSupportedException; 139 142 public void removeSmallIcon(); 143 146 public void removeLargeIcon(); 147 150 public void removeIcon(); 151 154 public void removeAllIcons(); 155 } 156 | Popular Tags |