01: // ServerEditorInterface.java
02: // $Id: ServerEditorInterface.java,v 1.5 2000/08/16 21:37:31 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: import org.w3c.jigadmin.RemoteResourceWrapper;
09:
10: /**
11: * Interface for server editors.
12: * @version $Revision: 1.5 $
13: * @author Benoît Mahé (bmahe@w3.org)
14: */
15: public interface ServerEditorInterface extends EditorInterface {
16:
17: /**
18: * Load or reload the server configuration.
19: * @param server the new server wrapper
20: */
21: public void setServer(RemoteResourceWrapper server);
22:
23: }
|