01: // EditorModifier.java
02: // $Id: EditorModifier.java,v 1.2 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: public interface EditorModifier {
09:
10: /**
11: * Modify the selected item
12: * @return The modifier item
13: */
14:
15: public String modify(String item);
16:
17: }
|