1 package fr.ove.openmath;
2
3 /***
4 * The interface to implements for all objects which are intended to support
5 * (i.e. import or export) OpenMath objects.
6 *
7 * @author © 2000 DIRAT Laurent
8 * @version 1.0 11/11/2000
9 */
10 public interface OpenMathizable {
11 /***
12 * Sets the OpenMath object.
13 * @param obj the OpenMath object.
14 */
15 public void setOpenMath(String OpenMath);
16
17 /***
18 * Returns the OpenMath object.
19 */
20 public String getOpenMath();
21 }