package org.j3de.ui;
import java.rmi.Remote;
/** UIElement is the basic (remote) interface that all UIElements have to implement.
*/
public interface UIElement extends Remote {
}
package org.j3de.ui;
import javax.swing.event.ChangeListener;
public interface HasChangingBounds {
public void addBoundsListener(ChangeListener listener);
public void r