01: // EditorFeeder.java
02: // $Id: EditorFeeder.java,v 1.3 2000/08/16 21:37:27 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigadm.editors;
07:
08: import org.w3c.jigadm.RemoteResourceWrapper;
09:
10: import java.util.Properties;
11:
12: public interface EditorFeeder {
13:
14: /**
15: * Compute the possible items for a StringArrayEditor.
16: * @return The possible items for the selection.
17: */
18:
19: public String[] getDefaultItems();
20:
21: public void initialize(RemoteResourceWrapper rrw, Properties p);
22: }
|