1 19 20 26 package org.netbeans.modules.xml.wsdl.ui.extensibility.model; 27 28 import java.util.List ; 29 30 import org.openide.loaders.DataObject; 31 32 41 public interface WSDLExtensibilityElementInfoContainer { 42 43 47 String getName(); 48 49 53 String getDisplayName(); 54 55 59 DataObject getDataObject(); 60 61 66 List <WSDLExtensibilityElementInfo> getAllWSDLExtensibilityElementInfo(); 67 68 69 List <WSDLExtensibilityElementInfo> getWSDLExtensibilityElementInfo(String namespace); 70 } 71 | Popular Tags |