1 package fr.ove.openmath.jome.ctrlview.bidim;
2
3 import fr.ove.openmath.jome.ctrlview.bidim.*;
4
5 /***
6 * The interface to implement for classes that want to create on the fly specific
7 * operator display.
8 *
9 * @author © 1999 DIRAT Laurent
10 * @version 2.0 14/12/1999
11 */
12 public interface OperatorDisplayCreator {
13 /***
14 * Returns the display of an operator
15 */
16 public Display createOperatorDisplay();
17 }