2012-06-17 20:34:50 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (c) 2012 IT Just working.
|
|
|
|
* 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:
|
|
|
|
* IT Just working - initial API and implementation
|
|
|
|
*******************************************************************************/
|
2015-01-03 16:34:32 +01:00
|
|
|
package com.minres.scviewer.database;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
|
|
|
import java.beans.PropertyChangeListener;
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-01-06 17:14:16 +01:00
|
|
|
public interface 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
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
public void removePropertyChangeListener(PropertyChangeListener l) ;
|
|
|
|
|
|
|
|
public String getFullName();
|
|
|
|
|
|
|
|
public String getName();
|
|
|
|
|
|
|
|
public void setName(String name);
|
|
|
|
|
2015-01-06 17:14:16 +01:00
|
|
|
public List<IHierNode> getChildNodes();
|
2012-06-17 19:53:05 +02:00
|
|
|
|
|
|
|
}
|