Java Code Examples for com.sun.tools.internal.ws.wscompile.WsimportOptions#getCodeModel()

The following examples show how to use com.sun.tools.internal.ws.wscompile.WsimportOptions#getCodeModel() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GeneratorBase.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 2
Source File: PluginImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 3
Source File: GeneratorBase.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 4
Source File: PluginImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 5
Source File: GeneratorBase.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 6
Source File: PluginImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 7
Source File: GeneratorBase.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 8
Source File: PluginImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 9
Source File: GeneratorBase.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 10
Source File: PluginImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 11
Source File: GeneratorBase.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 12
Source File: PluginImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 13
Source File: GeneratorBase.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 14
Source File: PluginImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}
 
Example 15
Source File: GeneratorBase.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public void init(Model model, WsimportOptions options, ErrorReceiver receiver){
    this.model = model;
    this.options = options;
    this.destDir = options.destDir;
    this.receiver = receiver;
    this.wsdlLocation = options.wsdlLocation;
    this.targetVersion = options.target.getVersion();
    this.cm = options.getCodeModel();
}
 
Example 16
Source File: PluginImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public boolean run(Model model, WsimportOptions wo, ErrorReceiver er) throws SAXException {
    JCodeModel cm = wo.getCodeModel();
    // we want this to work without requiring JSR-250 jar.
    annotation = cm.ref("javax.annotation.Generated");

    for (Iterator<JPackage> i = cm.packages(); i.hasNext();) {
        for (Iterator<JDefinedClass> j = i.next().classes(); j.hasNext();) {
            annotate(j.next());
        }
    }

    return true;
}