/** @apilevel internal */ @SuppressWarnings({"unchecked", "cast"}) public MethodDeclSubstituted clone() throws CloneNotSupportedException { MethodDeclSubstituted node = (MethodDeclSubstituted) super.clone(); node.sourceMethodDecl_computed = false; node.sourceMethodDecl_value = null; node.in$Circle(false); node.is$Final(false); return node; }
/** @apilevel low-level */ @SuppressWarnings({"unchecked", "cast"}) public MethodDeclSubstituted fullCopy() { MethodDeclSubstituted res = (MethodDeclSubstituted) copy(); for (int i = 0; i < getNumChildNoTransform(); i++) { ASTNode node = getChildNoTransform(i); if (node != null) node = node.fullCopy(); res.setChild(node, i); } return res; }
/** @apilevel internal */ @SuppressWarnings({"unchecked", "cast"}) public MethodDeclSubstituted copy() { try { MethodDeclSubstituted node = (MethodDeclSubstituted) clone(); if (children != null) node.children = (ASTNode[]) children.clone(); return node; } catch (CloneNotSupportedException e) { } System.err.println("Error: Could not clone node of type " + getClass().getName() + "!"); return null; }