01: /*
02: * Project: AMODA - Abstract Modeled Application
03: * Class: de.gulden.framework.amoda.model.data.Value
04: * Version: snapshot-beautyj-1.1
05: *
06: * Date: 2004-09-29
07: *
08: * This is a snapshot version of the AMODA 0.2 development branch,
09: * it is not released as a seperate version.
10: * For AMODA, see http://amoda.berlios.de/.
11: *
12: * This is licensed under the GNU Lesser General Public License (LGPL)
13: * and comes with NO WARRANTY.
14: *
15: * Author: Jens Gulden
16: * Email: amoda@jensgulden.de
17: */
18:
19: package de.gulden.framework.amoda.model.data;
20:
21: import java.awt.*;
22: import java.io.*;
23: import java.lang.*;
24: import java.util.*;
25:
26: /**
27: * Class Value.
28: *
29: * @author Jens Gulden
30: * @version snapshot-beautyj-1.1
31: */
32: public interface Value {
33:
34: // ------------------------------------------------------------------------
35: // --- methods ---
36: // ------------------------------------------------------------------------
37:
38: public String getString();
39:
40: public Object get();
41:
42: public boolean getBoolean();
43:
44: public int getInt();
45:
46: public double getDouble();
47:
48: public float getFloat();
49:
50: public File getFile();
51:
52: public Color getColor();
53:
54: public boolean isTypeAvailable(Class type);
55:
56: public Object set(Object value);
57:
58: public Class getClassType();
59:
60: public Object getClassInstance();
61:
62: } // end Value
|