01: /*
02: * Port.java
03: *
04: * Created on September 22, 2006, 6:38 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.e2e.api.wsdl;
11:
12: import java.util.List;
13: import org.netbeans.modules.e2e.api.wsdl.extensions.ExtensibilityElement;
14:
15: /**
16: *
17: * @author Michal Skvor
18: */
19: public interface Port {
20:
21: public void setName(String name);
22:
23: public String getName();
24:
25: public void setBinding(Binding binding);
26:
27: public Binding getBinding();
28:
29: public void addExtensibilityElement(
30: ExtensibilityElement extensibilityElement);
31:
32: public List<ExtensibilityElement> getExtensibilityElements();
33: }
|