本文整理汇总了Java中com.sun.tools.internal.xjc.api.SchemaCompiler类的典型用法代码示例。如果您正苦于以下问题:Java SchemaCompiler类的具体用法?Java SchemaCompiler怎么用?Java SchemaCompiler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SchemaCompiler类属于com.sun.tools.internal.xjc.api包,在下文中一共展示了SchemaCompiler类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSchemaCompiler
import com.sun.tools.internal.xjc.api.SchemaCompiler; //导入依赖的package包/类
public SchemaCompiler getSchemaCompiler() {
schemaCompiler.setTargetVersion(SpecVersion.parse(target.getVersion()));
if(entityResolver != null) {
//set if its not null so as not to override catalog option specified via xjc args
schemaCompiler.setEntityResolver(entityResolver);
}
return schemaCompiler;
}
示例2: getJAXBSchemaCompiler
import com.sun.tools.internal.xjc.api.SchemaCompiler; //导入依赖的package包/类
protected SchemaCompiler getJAXBSchemaCompiler(){
return schemaCompiler;
}