@SuppressWarnings({"unchecked", "cast"}) public FieldDecl clone() throws CloneNotSupportedException { FieldDecl node = (FieldDecl) super.clone(); node.in$Circle(false); node.is$Final(false); return node; }
@SuppressWarnings({"unchecked", "cast"}) public FieldDecl fullCopy() { FieldDecl res = (FieldDecl) copy(); for (int i = 0; i < getNumChildNoTransform(); i++) { ASTNode node = getChildNoTransform(i); if (node != null) node = node.fullCopy(); res.setChild(node, i); } return res; }
@SuppressWarnings({"unchecked", "cast"}) public FieldDecl copy() { try { FieldDecl node = (FieldDecl) 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; }