01: // RemoteNode.java
02: // $Id: RemoteNode.java,v 1.5 2000/08/16 21:37:30 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1998.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigadmin.editors;
07:
08: /**
09: * The interface for remote nodes.
10: * @version $Revision: 1.5 $
11: * @author Benoît Mahé (bmahe@w3.org)
12: */
13: public interface RemoteNode {
14:
15: /**
16: * Invoked whenever this node is about to be expanded.
17: */
18: public void nodeWillExpand();
19:
20: /**
21: * Invoked whenever this node is about to be collapsed.
22: */
23: public void nodeWillCollapse();
24:
25: }
|