Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
62 lines (52 sloc) 1.58 KB
/*
* Copyright (C) 2015 Machine Learning Lab - University of Trieste,
* Italy (http://machinelearning.inginf.units.it/)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package it.units.inginf.male.tree;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author MaleLabTs
*/
public abstract class AbstractNode implements Node {
private List<Node> childrens;
private long id;
@Override
public long getId() {
return id;
}
public AbstractNode() {
id = IDFactory.getInstance().nextID();
childrens = new ArrayList<Node>(getMaxChildrenCount());
}
@Override
public List<Node> getChildrens() {
return childrens;
}
@Override
public void describe(StringBuilder builder) {
describe(builder, new DescriptionContext(), RegexFlavour.JAVA);
}
@Override
public boolean isCharacterClass(){
return false;
}
@Override
public boolean isEscaped(){
return false;
}
}