01: /*
02: * Part.java
03: *
04: * Created on September 22, 2006, 1:30 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 javax.xml.namespace.QName;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public interface Part {
19:
20: public void setName(String name);
21:
22: public String getName();
23:
24: public void setTypeName(QName typeName);
25:
26: public QName getTypeName();
27:
28: public void setElementName(QName elementName);
29:
30: public QName getElementName();
31: }
|