01: /*
02: * ExtensibilityElement.java
03: *
04: * Created on September 22, 2006, 7:04 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.extensions;
11:
12: import javax.xml.namespace.QName;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public interface ExtensibilityElement {
19:
20: public void setElementType(QName type);
21:
22: public QName getElementType();
23: }
|