com.github.gumtreediff.tree.DefaultTree Maven / Gradle / Ivy
The newest version!
/*
* This file is part of GumTree.
*
* GumTree is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GumTree is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with GumTree. If not, see .
*
* Copyright 2011-2015 Jean-Rémy Falleri
* Copyright 2011-2015 Floréal Morandat
*/
package com.github.gumtreediff.tree;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Map.Entry;
public class DefaultTree extends AbstractTree implements Tree {
private Type type;
private String label;
private int pos;
private int length;
private AssociationMap metadata;
/**
* Constructs a new node with an empty label.
* @param type the type of the node
* @see TreeContext#createTree(Type, String)
*/
public DefaultTree(Type type) {
this(type, NO_LABEL);
}
/**
* Constructs a new node with a given label.
* @param type the type of the node
* @param label the label. If null, it will be replaced by an empty string.
* Note that the label will be interned.
* @see TreeContext#createTree(Type, String)
* @see String#intern()
*/
public DefaultTree(Type type, String label) {
this.type = type;
this.label = (label == null) ? NO_LABEL : label.intern();
this.children = new ArrayList<>();
}
/**
* Construct a node using a given node as the model. It copies only
* the local attributes of the given node, and not its parent and children.
* @param other the model node, must be not null.
*/
protected DefaultTree(Tree other) {
this.type = other.getType();
this.label = other.getLabel();
this.pos = other.getPos();
this.length = other.getLength();
this.children = new ArrayList<>();
}
@Override
public Tree deepCopy() {
Tree copy = new DefaultTree(this);
for (Tree child : getChildren())
copy.addChild(child.deepCopy());
return copy;
}
@Override
public String getLabel() {
return label;
}
@Override
public int getLength() {
return length;
}
@Override
public int getPos() {
return pos;
}
@Override
public Type getType() {
return type;
}
@Override
public void setLabel(String label) {
this.label = (label == null) ? NO_LABEL : label.intern();
}
@Override
public void setLength(int length) {
this.length = length;
}
@Override
public void setPos(int pos) {
this.pos = pos;
}
@Override
public void setType(Type type) {
this.type = type;
}
@Override
public Object getMetadata(String key) {
if (metadata == null)
return null;
return metadata.get(key);
}
@Override
public Object setMetadata(String key, Object value) {
if (value == null) {
if (metadata == null)
return null;
else
return metadata.remove(key);
}
if (metadata == null)
metadata = new AssociationMap();
return metadata.set(key, value);
}
@Override
public Iterator> getMetadata() {
if (metadata == null)
return new EmptyEntryIterator();
return metadata.iterator();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy