Source code: com/memoire/foo/FooDefault.java
1 /**
2 * @modification $Date: 2002/12/16 18:56:25 $
3 * @statut unstable
4 * @file FooDefault.java
5 * @version 0.08
6 * @author Guillaume Desnoix
7 * @email guillaume@desnoix.com
8 * @license GNU General Public License 2 (GPL2)
9 * @copyright 1999-2001 Guillaume Desnoix
10 */
11
12 package com.memoire.foo;
13 import com.memoire.foo.*;
14
15 public class FooDefault
16 implements FooEval
17 {
18 public static final FooDefault DEFAULT=new FooDefault();
19 private FooDefault() { }
20 public String toString() { return "default"; }
21 public Object eval() { return this; }
22 }