1 19 20 package org.netbeans.api.web.dd.common; 21 30 public interface IconInterface { 31 32 40 public void setSmallIcon(String locale, String icon) throws VersionNotSupportedException; 41 46 public void setSmallIcon(String icon); 47 55 public void setLargeIcon(String locale, String icon) throws VersionNotSupportedException; 56 61 public void setLargeIcon(String icon); 62 69 public void setAllIcons(String [] locales, String [] smallIcons, String [] largeIcons) throws VersionNotSupportedException; 70 76 public void setIcon(org.netbeans.api.web.dd.Icon icon); 77 78 85 public String getSmallIcon(String locale) throws VersionNotSupportedException; 86 91 public String getSmallIcon(); 92 99 public String getLargeIcon(String locale) throws VersionNotSupportedException; 100 105 public String getLargeIcon(); 106 111 public org.netbeans.api.web.dd.Icon getDefaultIcon(); 112 117 public java.util.Map getAllIcons(); 118 119 125 public void removeSmallIcon(String locale) throws VersionNotSupportedException; 126 132 public void removeLargeIcon(String locale) throws VersionNotSupportedException; 133 139 public void removeIcon(String locale) throws VersionNotSupportedException; 140 143 public void removeSmallIcon(); 144 147 public void removeLargeIcon(); 148 151 public void removeIcon(); 152 155 public void removeAllIcons(); 156 } 157 | Popular Tags |