1 19 20 package org.netbeans.modules.j2ee.dd.api.common; 21 29 public interface DescriptionInterface { 30 31 39 public void setDescription(String locale, String description) throws VersionNotSupportedException; 40 41 46 public void setDescription(String description); 47 48 53 public void setAllDescriptions(java.util.Map descriptions) throws VersionNotSupportedException; 54 55 62 public String getDescription(String locale) throws VersionNotSupportedException; 63 64 69 public String getDefaultDescription(); 70 71 76 public java.util.Map getAllDescriptions(); 77 78 84 public void removeDescriptionForLocale(String locale) throws VersionNotSupportedException; 85 86 89 public void removeDescription(); 90 91 94 public void removeAllDescriptions(); 95 96 } 97 | Popular Tags |