1 package fr.ove.openmath.jome.model;
2
3 import java.util.*;
4 import fr.ove.openmath.jome.model.*;
5
6 /***
7 * The factorial operator
8 *
9 * @author © 2000 DIRAT Laurent
10 * @version 2.1 24/02/2000
11 */
12 public class Factorial extends UnaryPostfixedOperator {
13 /***
14 * The constructor.
15 */
16 public Factorial() {
17 super();
18 setTheOperator("!");
19 }
20
21 /***
22 * Set the specified value
23 * @param the value to set.
24 */
25 public void setValue(String value) {
26
27
28
29
30 }
31
32 }
33