blob: 0914a3f2201d407f480a96325f987a664bee1b24 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.ruta.explain.tree;
import java.util.ArrayList;
import java.util.List;
import org.apache.uima.cas.FeatureStructure;
import org.apache.uima.cas.TypeSystem;
import org.apache.uima.cas.text.AnnotationFS;
import org.eclipse.core.runtime.IAdaptable;
public abstract class ExplainAbstractTreeNode implements IExplainTreeNode, IAdaptable {
private IExplainTreeNode parent;
private InlinedRootNode inlined;
private List<IExplainTreeNode> children;
private FeatureStructure fs;
private TypeSystem ts;
public ExplainAbstractTreeNode(IExplainTreeNode parent, FeatureStructure fs, TypeSystem ts) {
this.parent = parent;
this.children = new ArrayList<IExplainTreeNode>();
this.fs = fs;
this.ts = ts;
}
@Override
public IExplainTreeNode getParent() {
return parent;
}
@Override
public List<IExplainTreeNode> getChildren() {
return children;
}
@Override
public boolean hasChildren() {
if (children.size() > 0) {
return true;
}
return false;
}
@Override
public void addChild(IExplainTreeNode child) {
children.add(child);
}
@Override
public boolean removeChild(IExplainTreeNode child) {
return children.remove(child);
}
@Override
public FeatureStructure getFeatureStructure() {
return fs;
}
@Override
public TypeSystem getTypeSystem() {
return ts;
}
@Override
public String toString() {
return fs.toString();
}
@Override
@SuppressWarnings({ "unchecked", "rawtypes" })
public Object getAdapter(Class adapter) {
if (FeatureStructure.class.equals(adapter)) {
return getFeatureStructure();
} else if (AnnotationFS.class.equals(adapter)
&& getFeatureStructure() instanceof AnnotationFS) {
return getFeatureStructure();
}
return null;
}
@Override
public InlinedRootNode getInlined() {
return inlined;
}
public void setInlined(InlinedRootNode inlined) {
this.inlined = inlined;
}
}