1 19 20 package org.netbeans.modules.xml.wsdl.model; 21 22 import java.util.Collection ; 23 import org.netbeans.modules.xml.xam.Nameable; 24 25 30 public interface Service extends ReferenceableWSDLComponent, Nameable<WSDLComponent> { 31 public static final String PORT_PROPERTY = "port"; 32 33 void addPort(Port port); 34 void removePort(Port port); 35 Collection <Port> getPorts(); 36 } 37 | Popular Tags |