本文整理汇总了Java中com.sun.tools.internal.ws.processor.model.Model类的典型用法代码示例。如果您正苦于以下问题:Java Model类的具体用法?Java Model怎么用?Java Model使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Model类属于com.sun.tools.internal.ws.processor.model包,在下文中一共展示了Model类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: generate
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
public static void generate(Model model,
WsimportOptions options,
ErrorReceiver receiver){
CustomExceptionGenerator exceptionGen = new CustomExceptionGenerator();
exceptionGen.init(model, options, receiver);
exceptionGen.doGeneration();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:CustomExceptionGenerator.java
示例2: init
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
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();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:GeneratorBase.java
示例3: isEncoded
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
public static boolean isEncoded(Model model) {
if (model == null)
return false;
for (Service service : model.getServices()) {
for (Port port : service.getPorts()) {
for (Operation operation : port.getOperations()) {
if (operation.getUse() != null && operation.getUse().equals(SOAPUse.LITERAL))
return false;
}
}
}
return true;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:AnnotationProcessorContext.java
示例4: run
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
@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;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:PluginImpl.java
示例5: GeneratorBase
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
protected GeneratorBase(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();
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:10,代码来源:GeneratorBase.java
示例6: getGenerator
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
public GeneratorBase getGenerator(Model model, WsimportOptions options, ErrorReceiver receiver) {
GeneratorBase g = new CustomExceptionGenerator();
g.init(model, options, receiver);
return g;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:CustomExceptionGenerator.java
示例7: generate
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
public static void generate(Model model, WsimportOptions options, ErrorReceiver receiver) {
ServiceGenerator serviceGenerator = new ServiceGenerator(model, options, receiver);
serviceGenerator.doGeneration();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:ServiceGenerator.java
示例8: ServiceGenerator
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
private ServiceGenerator(Model model, WsimportOptions options, ErrorReceiver receiver) {
init(model, options, receiver);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:ServiceGenerator.java
示例9: visit
import com.sun.tools.internal.ws.processor.model.Model; //导入依赖的package包/类
@Override
public void visit(Model model) throws Exception {
for (Service service : model.getServices()) {
service.accept(this);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:GeneratorBase.java
注:本文中的com.sun.tools.internal.ws.processor.model.Model类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论