コード例 #1
0
 @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;
 }