本文整理汇总了Java中com.sun.tools.internal.xjc.AbortException类的典型用法代码示例。如果您正苦于以下问题:Java AbortException类的具体用法?Java AbortException怎么用?Java AbortException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AbortException类属于com.sun.tools.internal.xjc包,在下文中一共展示了AbortException类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: TDTDReader
import com.sun.tools.internal.xjc.AbortException; //导入依赖的package包/类
protected TDTDReader(ErrorReceiver errorReceiver, Options opts, InputSource _bindInfo)
throws AbortException {
this.entityResolver = opts.entityResolver;
this.errorReceiver = new ErrorReceiverFilter(errorReceiver);
bindInfo = new BindInfo(model,_bindInfo, this.errorReceiver);
classFactory = new CodeModelClassFactory(errorReceiver);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:TDTDReader.java
示例2: BindInfo
import com.sun.tools.internal.xjc.AbortException; //导入依赖的package包/类
public BindInfo(Model model, InputSource source, ErrorReceiver _errorReceiver) throws AbortException {
this( model, parse(model,source,_errorReceiver), _errorReceiver);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:BindInfo.java
示例3: generate
import com.sun.tools.internal.xjc.AbortException; //导入依赖的package包/类
/**
* Generates beans into code model according to the BGM,
* and produces the reflection model.
*
* @param _errorReceiver
* This object will receive all the errors discovered
* during the back-end stage.
*
* @return
* returns a {@link Outline} which will in turn
* be used to further generate marshaller/unmarshaller,
* or null if the processing fails (errors should have been
* reported to the error recevier.)
*/
public static Outline generate(Model model, ErrorReceiver _errorReceiver) {
try {
return new BeanGenerator(model, _errorReceiver);
} catch (AbortException e) {
return null;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:BeanGenerator.java
注:本文中的com.sun.tools.internal.xjc.AbortException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论