1 19 20 package org.netbeans.api.web.dd.common; 21 30 public interface DescriptionInterface { 31 32 40 public void setDescription(String locale, String description) throws VersionNotSupportedException; 41 42 47 public void setDescription(String description); 48 49 54 public void setAllDescriptions(java.util.Map descriptions) throws VersionNotSupportedException; 55 56 63 public String getDescription(String locale) throws VersionNotSupportedException; 64 65 70 public String getDefaultDescription(); 71 72 77 public java.util.Map getAllDescriptions(); 78 79 85 public void removeDescriptionForLocale(String locale) throws VersionNotSupportedException; 86 87 90 public void removeDescription(); 91 92 95 public void removeAllDescriptions(); 96 97 } 98 | Popular Tags |