本文整理了Java中org.eclipse.jdt.core.dom.Block.clone()
方法的一些代码示例,展示了Block.clone()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.clone()
方法的具体详情如下:
包路径:org.eclipse.jdt.core.dom.Block
类名称:Block
方法名:clone
暂无
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
@Override
ASTNode clone0(AST target) {
CatchClause result = new CatchClause(target);
result.setSourceRange(getStartPosition(), getLength());
result.setBody((Block) getBody().clone(target));
result.setException(
(SingleVariableDeclaration) ASTNode.copySubtree(target, getException()));
return result;
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
ASTNode clone0(AST target) {
CatchClause result = new CatchClause(target);
result.setSourceRange(getStartPosition(), getLength());
result.setBody((Block) getBody().clone(target));
result.setException(
(SingleVariableDeclaration) ASTNode.copySubtree(target, getException()));
return result;
}
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
ASTNode clone0(AST target) {
CatchClause result = new CatchClause(target);
result.setSourceRange(getStartPosition(), getLength());
result.setBody((Block) getBody().clone(target));
result.setException(
(SingleVariableDeclaration) ASTNode.copySubtree(target, getException()));
return result;
}
代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion
ASTNode clone0(AST target) {
SynchronizedStatement result = new SynchronizedStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setExpression((Expression) getExpression().clone(target));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
ASTNode clone0(AST target) {
TryStatement result = new TryStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
if (this.ast.apiLevel >= AST.JLS4_INTERNAL) {
result.resources().addAll(
ASTNode.copySubtrees(target, resources()));
}
result.setBody((Block) getBody().clone(target));
result.catchClauses().addAll(
ASTNode.copySubtrees(target, catchClauses()));
result.setFinally(
(Block) ASTNode.copySubtree(target, getFinally()));
return result;
}
代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
ASTNode clone0(AST target) {
TryStatement result = new TryStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
if (this.ast.apiLevel >= AST.JLS4_INTERNAL) {
result.resources().addAll(
ASTNode.copySubtrees(target, resources()));
}
result.setBody((Block) getBody().clone(target));
result.catchClauses().addAll(
ASTNode.copySubtrees(target, catchClauses()));
result.setFinally(
(Block) ASTNode.copySubtree(target, getFinally()));
return result;
}
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
@Override
ASTNode clone0(AST target) {
TryStatement result = new TryStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
if (this.ast.apiLevel >= AST.JLS4_INTERNAL) {
result.resources().addAll(
ASTNode.copySubtrees(target, resources()));
}
result.setBody((Block) getBody().clone(target));
result.catchClauses().addAll(
ASTNode.copySubtrees(target, catchClauses()));
result.setFinally(
(Block) ASTNode.copySubtree(target, getFinally()));
return result;
}
代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
ASTNode clone0(AST target) {
CatchClause result = new CatchClause(target);
result.setSourceRange(getStartPosition(), getLength());
result.setBody((Block) getBody().clone(target));
result.setException(
(SingleVariableDeclaration) ASTNode.copySubtree(target, getException()));
return result;
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
ASTNode clone0(AST target) {
CatchClause result = new CatchClause(target);
result.setSourceRange(getStartPosition(), getLength());
result.setBody((Block) getBody().clone(target));
result.setException(
(SingleVariableDeclaration) ASTNode.copySubtree(target, getException()));
return result;
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
ASTNode clone0(AST target) {
TryStatement result = new TryStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setBody((Block) getBody().clone(target));
result.catchClauses().addAll(
ASTNode.copySubtrees(target, catchClauses()));
result.setFinally(
(Block) ASTNode.copySubtree(target, getFinally()));
return result;
}
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core
@Override
ASTNode clone0(AST target) {
SynchronizedStatement result = new SynchronizedStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setExpression((Expression) getExpression().clone(target));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
ASTNode clone0(AST target) {
SynchronizedStatement result = new SynchronizedStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setExpression((Expression) getExpression().clone(target));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion
ASTNode clone0(AST target) {
CatchClause result = new CatchClause(target);
result.setSourceRange(getStartPosition(), getLength());
result.setBody((Block) getBody().clone(target));
result.setException(
(SingleVariableDeclaration) ASTNode.copySubtree(target, getException()));
return result;
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
ASTNode clone0(AST target) {
SynchronizedStatement result = new SynchronizedStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setExpression((Expression) getExpression().clone(target));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
ASTNode clone0(AST target) {
SynchronizedStatement result = new SynchronizedStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setExpression((Expression) getExpression().clone(target));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
ASTNode clone0(AST target) {
SynchronizedStatement result = new SynchronizedStatement(target);
result.setSourceRange(getStartPosition(), getLength());
result.copyLeadingComment(this);
result.setExpression((Expression) getExpression().clone(target));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core
ASTNode clone0(AST target) {
Initializer result = new Initializer(target);
result.setSourceRange(getStartPosition(), getLength());
if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
result.internalSetModifiers(getModifiers());
}
if (this.ast.apiLevel >= AST.JLS3) {
result.modifiers().addAll(ASTNode.copySubtrees(target, modifiers()));
}
result.setJavadoc(
(Javadoc) ASTNode.copySubtree(target, getJavadoc()));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core
ASTNode clone0(AST target) {
Initializer result = new Initializer(target);
result.setSourceRange(getStartPosition(), getLength());
if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
result.internalSetModifiers(getModifiers());
}
if (this.ast.apiLevel >= AST.JLS3_INTERNAL) {
result.modifiers().addAll(ASTNode.copySubtrees(target, modifiers()));
}
result.setJavadoc(
(Javadoc) ASTNode.copySubtree(target, getJavadoc()));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core
ASTNode clone0(AST target) {
Initializer result = new Initializer(target);
result.setSourceRange(getStartPosition(), getLength());
if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
result.internalSetModifiers(getModifiers());
}
if (this.ast.apiLevel >= AST.JLS3_INTERNAL) {
result.modifiers().addAll(ASTNode.copySubtrees(target, modifiers()));
}
result.setJavadoc(
(Javadoc) ASTNode.copySubtree(target, getJavadoc()));
result.setBody((Block) getBody().clone(target));
return result;
}
代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core
ASTNode clone0(AST target) {
Initializer result = new Initializer(target);
result.setSourceRange(getStartPosition(), getLength());
if (this.ast.apiLevel == AST.JLS2_INTERNAL) {
result.internalSetModifiers(getModifiers());
}
if (this.ast.apiLevel >= AST.JLS3_INTERNAL) {
result.modifiers().addAll(ASTNode.copySubtrees(target, modifiers()));
}
result.setJavadoc(
(Javadoc) ASTNode.copySubtree(target, getJavadoc()));
result.setBody((Block) getBody().clone(target));
return result;
}
内容来源于网络,如有侵权,请联系作者删除!