94 lines
2.0 KiB
Java
94 lines
2.0 KiB
Java
/*******************************************************************************
|
|
* Copyright (c) 2015 MINRES Technologies GmbH and others.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
* which accompanies this distribution, and is available at
|
|
* http://www.eclipse.org/legal/epl-v10.html
|
|
*
|
|
* Contributors:
|
|
* MINRES Technologies GmbH - initial API and implementation
|
|
*******************************************************************************/
|
|
package com.minres.scviewer.database;
|
|
|
|
import java.beans.PropertyChangeListener;
|
|
import java.beans.PropertyChangeSupport;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class HierNode implements IHierNode {
|
|
|
|
protected String name;
|
|
|
|
protected IHierNode parent = null;
|
|
|
|
protected ArrayList<IHierNode> childs;
|
|
|
|
protected PropertyChangeSupport pcs;
|
|
|
|
public HierNode() {
|
|
childs = new ArrayList<>();
|
|
pcs=new PropertyChangeSupport(this);
|
|
}
|
|
|
|
public HierNode(String name) {
|
|
this();
|
|
this.name=name;
|
|
}
|
|
|
|
public HierNode(String name, IHierNode parent) {
|
|
this();
|
|
this.name=name;
|
|
this.parent=parent;
|
|
}
|
|
|
|
@Override
|
|
public void addPropertyChangeListener(PropertyChangeListener l) {
|
|
pcs.addPropertyChangeListener(l);
|
|
}
|
|
|
|
@Override
|
|
public void removePropertyChangeListener(PropertyChangeListener l) {
|
|
pcs.removePropertyChangeListener(l);
|
|
}
|
|
|
|
|
|
@Override
|
|
public String getFullName() {
|
|
if(parent!=null)
|
|
return parent.getFullName()+"."+name;
|
|
else
|
|
return name;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
@Override
|
|
public void setName(String name) {
|
|
this.name=name;
|
|
}
|
|
|
|
@Override
|
|
public void setParent(IHierNode parent) {
|
|
this.parent=parent;
|
|
}
|
|
|
|
@Override
|
|
public List<IHierNode> getChildNodes() {
|
|
return childs;
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(IHierNode o) {
|
|
return getFullName().compareTo(o.getFullName());
|
|
}
|
|
|
|
@Override
|
|
public IDerivedWaveform deriveWaveform() {
|
|
return null;
|
|
}
|
|
|
|
}
|