SCViewer/plugins/com.minres.scviewer.database/src/com/minres/scviewer/database/IHierNode.java

79 lines
1.8 KiB
Java
Raw Normal View History

2012-06-17 20:34:50 +02:00
/*******************************************************************************
* Copyright (c) 2015, 2020 MINRES Technologies GmbH and others.
2012-06-17 20:34:50 +02:00
* 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
2012-06-17 20:34:50 +02:00
*******************************************************************************/
package com.minres.scviewer.database;
2012-06-17 19:53:05 +02:00
import java.beans.PropertyChangeListener;
import java.util.List;
/**
* The Interface IHierNode.
*/
public interface IHierNode extends Comparable<IHierNode> {
2012-06-17 19:53:05 +02:00
/**
* Attach a non-null PropertyChangeListener to this object.
*
* @param l a non-null PropertyChangeListener instance
* @throws IllegalArgumentException if the parameter is null
2012-06-17 19:53:05 +02:00
*/
public void addPropertyChangeListener(PropertyChangeListener l);
2015-01-06 17:14:16 +01:00
2012-06-17 19:53:05 +02:00
/**
* Remove a PropertyChangeListener from this component.
*
* @param l a PropertyChangeListener instance
2012-06-17 19:53:05 +02:00
*/
public void removePropertyChangeListener(PropertyChangeListener l);
2012-06-17 19:53:05 +02:00
/**
* Gets the full name.
*
* @return the full name
*/
2012-06-17 19:53:05 +02:00
public String getFullName();
/**
* Gets the name.
*
* @return the name
*/
2012-06-17 19:53:05 +02:00
public String getName();
/**
* Sets the name.
*
* @param name the new name
*/
2012-06-17 19:53:05 +02:00
public void setName(String name);
/**
* Sets the parent.
*
* @param parent the new parent
*/
2020-11-28 19:41:00 +01:00
public void setParent(IHierNode parent);
/**
* Gets the child nodes.
*
* @return the child nodes
*/
2015-01-06 17:14:16 +01:00
public List<IHierNode> getChildNodes();
/**
* Derive waveform.
*
* @return the i derived waveform or null if none could be created
*/
public IDerivedWaveform deriveWaveform();
2012-06-17 19:53:05 +02:00
}