本文整理了Java中org.eclipse.jdt.internal.compiler.Compiler.handleInternalException()
方法的一些代码示例,展示了Compiler.handleInternalException()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Compiler.handleInternalException()
方法的具体详情如下:
包路径:org.eclipse.jdt.internal.compiler.Compiler
类名称:Compiler
方法名:handleInternalException
暂无
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
@Override
protected void handleInternalException(
Throwable internalException,
CompilationUnitDeclaration unit,
CompilationResult result) {
super.handleInternalException(internalException, unit, result);
if (unit != null) {
removeUnresolvedBindings(unit);
}
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
protected void handleInternalException(
Throwable internalException,
CompilationUnitDeclaration unit,
CompilationResult result) {
super.handleInternalException(internalException, unit, result);
if (unit != null) {
removeUnresolvedBindings(unit);
}
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
protected void handleInternalException(
AbortCompilation abortException,
CompilationUnitDeclaration unit) {
super.handleInternalException(abortException, unit);
if (unit != null) {
removeUnresolvedBindings(unit);
}
this.hasCompilationAborted = true;
this.abortProblem = abortException.problem;
}
代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
protected void handleInternalException(
AbortCompilation abortException,
CompilationUnitDeclaration unit) {
super.handleInternalException(abortException, unit);
if (unit != null) {
removeUnresolvedBindings(unit);
}
this.hasCompilationAborted = true;
this.abortProblem = abortException.problem;
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
protected void handleInternalException(
Throwable internalException,
CompilationUnitDeclaration unit,
CompilationResult result) {
super.handleInternalException(internalException, unit, result);
if (unit != null) {
removeUnresolvedBindings(unit);
}
}
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
protected void handleInternalException(
AbortCompilation abortException,
CompilationUnitDeclaration unit) {
super.handleInternalException(abortException, unit);
if (unit != null) {
removeUnresolvedBindings(unit);
}
this.hasCompilationAborted = true;
this.abortProblem = abortException.problem;
}
代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
protected void handleInternalException(
Throwable internalException,
CompilationUnitDeclaration unit,
CompilationResult result) {
super.handleInternalException(internalException, unit, result);
if (unit != null) {
removeUnresolvedBindings(unit);
}
}
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
protected void handleInternalException(
Throwable internalException,
CompilationUnitDeclaration unit,
CompilationResult result) {
super.handleInternalException(internalException, unit, result);
if (unit != null) {
removeUnresolvedBindings(unit);
}
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
protected void handleInternalException(
AbortCompilation abortException,
CompilationUnitDeclaration unit) {
super.handleInternalException(abortException, unit);
if (unit != null) {
removeUnresolvedBindings(unit);
}
this.hasCompilationAborted = true;
}
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
@Override
protected void handleInternalException(
AbortCompilation abortException,
CompilationUnitDeclaration unit) {
super.handleInternalException(abortException, unit);
if (unit != null) {
removeUnresolvedBindings(unit);
}
this.hasCompilationAborted = true;
this.abortProblem = abortException.problem;
}
代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion
protected void handleInternalException(
Throwable internalException,
CompilationUnitDeclaration unit,
CompilationResult result) {
super.handleInternalException(internalException, unit, result);
if (unit != null) {
removeUnresolvedBindings(unit);
}
}
代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion
protected void handleInternalException(
AbortCompilation abortException,
CompilationUnitDeclaration unit) {
super.handleInternalException(abortException, unit);
if (unit != null) {
removeUnresolvedBindings(unit);
}
this.hasCompilationAborted = true;
this.abortProblem = abortException.problem;
}
代码示例来源:origin: org.eclipse.jdt.core.compiler/ecj
processCompiledUnits(0, lastRound);
} catch (AbortCompilation e) {
this.handleInternalException(e, null);
代码示例来源:origin: org.eclipse.scout.sdk.deps/ecj
processCompiledUnits(0, lastRound);
} catch (AbortCompilation e) {
this.handleInternalException(e, null);
代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps
return unit;
} catch (AbortCompilation e) {
this.handleInternalException(e, unit);
return unit == null ? this.unitsToProcess[0] : unit;
} catch (Error e) {
this.handleInternalException(e, unit, null);
throw e; // rethrow
} catch (RuntimeException e) {
this.handleInternalException(e, unit, null);
throw e; // rethrow
} finally {
代码示例来源:origin: org.eclipse.scout.sdk.deps/ecj
this.handleInternalException(abortException.exception, null, result);
return;
代码示例来源:origin: windup/windup
this.handleInternalException(abortException.exception, null, result);
return;
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
this.handleInternalException(abortException.exception, null, result);
return;
代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion
this.handleInternalException(abortException.exception, null, result);
return;
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
this.handleInternalException(abortException.exception, null, result);
return;
内容来源于网络,如有侵权,请联系作者删除!