01: /*
02: * BindingOutput.java
03: *
04: * Created on September 22, 2006, 6:54 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 BindingOutput {
20:
21: public void setName(String name);
22:
23: public String getName();
24:
25: public void addExtensibilityElement(
26: ExtensibilityElement extensibilityElement);
27:
28: public List<ExtensibilityElement> getExtensibilityElements();
29: }
|