
se.llbit.nbt.List Maven / Gradle / Ivy
/* This file was generated with JastAdd2 (http://jastadd.org) version 2.1.13 */
package se.llbit.nbt;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Map;
import java.util.HashMap;
import java.util.Set;
import java.util.HashSet;
/**
* @ast node
* @production List : {@link ASTNode};
*/
public class List extends ASTNode implements Cloneable {
/**
* @declaredat ASTNode:1
*/
public List() {
super();
}
/**
* Initializes the child array to the correct size.
* Initializes List and Opt nta children.
* @apilevel internal
* @ast method
* @declaredat ASTNode:10
*/
public void init$Children() {
}
/**
* @declaredat ASTNode:12
*/
public List(T... initialChildren) {
children = new ASTNode[initialChildren.length];
for (int i = 0; i < children.length; ++i) {
addChild(initialChildren[i]);
}
}
/**
* @declaredat ASTNode:19
*/
private boolean list$touched = true;
/**
* @declaredat ASTNode:21
*/
public List add(T node) {
addChild(node);
return this;
}
/**
* @declaredat ASTNode:26
*/
public List addAll(java.util.Collection extends T> c) {
for (T node : c) {
addChild(node);
}
return this;
}
/**
* @declaredat ASTNode:33
*/
public void insertChild(ASTNode node, int i) {
list$touched = true;
super.insertChild(node, i);
}
/**
* @declaredat ASTNode:40
*/
public void addChild(T node) {
list$touched = true;
super.addChild(node);
}
/**
* @apilevel low-level
* @declaredat ASTNode:50
*/
public void removeChild(int i) {
list$touched = true;
super.removeChild(i);
}
/**
* @declaredat ASTNode:57
*/
public int getNumChild() {
if (list$touched) {
for (int i = 0; i < getNumChildNoTransform(); i++) {
getChild(i);
}
list$touched = false;
}
return getNumChildNoTransform();
}
/**
* @apilevel internal
* @declaredat ASTNode:71
*/
public void flushAttrCache() {
super.flushAttrCache();
}
/**
* @apilevel internal
* @declaredat ASTNode:77
*/
public void flushCollectionCache() {
super.flushCollectionCache();
}
/**
* @apilevel internal
* @declaredat ASTNode:83
*/
public List clone() throws CloneNotSupportedException {
List node = (List) super.clone();
return node;
}
/**
* @apilevel internal
* @declaredat ASTNode:90
*/
public List copy() {
try {
List node = (List) clone();
node.parent = null;
if (children != null) {
node.children = (ASTNode[]) children.clone();
}
return node;
} catch (CloneNotSupportedException e) {
throw new Error("Error: clone not supported for " + getClass().getName());
}
}
/**
* Create a deep copy of the AST subtree at this node.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
* @deprecated Please use treeCopy or treeCopyNoTransform instead
* @declaredat ASTNode:109
*/
@Deprecated
public List fullCopy() {
return treeCopyNoTransform();
}
/**
* Create a deep copy of the AST subtree at this node.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
* @declaredat ASTNode:119
*/
public List treeCopyNoTransform() {
List tree = (List) copy();
if (children != null) {
for (int i = 0; i < children.length; ++i) {
ASTNode child = (ASTNode) children[i];
if (child != null) {
child = child.treeCopyNoTransform();
tree.setChild(child, i);
}
}
}
return tree;
}
/**
* Create a deep copy of the AST subtree at this node.
* The subtree of this node is traversed to trigger rewrites before copy.
* The copy is dangling, i.e. has no parent.
* @return dangling copy of the subtree at this node
* @apilevel low-level
* @declaredat ASTNode:139
*/
public List treeCopy() {
doFullTraversal();
return treeCopyNoTransform();
}
/**
* @apilevel internal
* @declaredat ASTNode:146
*/
protected boolean is$Equal(ASTNode node) {
return super.is$Equal(node);
}
/**
* @attribute syn
* @aspect DumpTree
* @declaredat /Users/jesper/git/chunky/chunky/src/jastadd/DumpTree.jrag:32
*/
@ASTNodeAnnotation.Attribute
public StringBuffer dumpTree(StringBuffer buff, String indent) {
{
for (int i = 0; i < getNumChild(); ++i) {
buff = getChild(i).dumpTree(buff, indent);
}
return buff;
}
}
@ASTNodeAnnotation.Attribute
public String name() {
String name_value = "AST.List";
return name_value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy