1 19 20 package org.netbeans.modules.xml.wsdl.model; 21 22 import org.netbeans.modules.xml.xam.locator.CatalogModelException; 23 24 29 public interface Import extends WSDLComponent { 30 public static final String NAMESPACE_URI_PROPERTY = "namespaceURI"; 31 public static final String LOCATION_PROPERTY = "location"; 32 33 void setNamespace(String namespaceURI); 34 String getNamespace(); 35 36 void setLocation(String locationURI); 37 String getLocation(); 38 39 46 WSDLModel getImportedWSDLModel() throws CatalogModelException; 47 } 48 | Popular Tags |