01: /*
02: * WSDL2JavaFactory.java
03: *
04: * Created on October 30, 2006, 10:43 AM
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.wsdl2java;
11:
12: import org.netbeans.modules.e2e.wsdl.wsdl2java.WSDL2JavaImpl;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public class WSDL2JavaFactory {
19:
20: public static WSDL2Java getWSDL2Java(
21: WSDL2Java.Configuration configuration) {
22: return new WSDL2JavaImpl(configuration);
23: }
24: }
|