01: /*
02: * XML 2 Java Binding (X2JB) - the excellent Java tool.
03: * Copyright 2007, by Richard Opalka.
04: *
05: * This is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU Lesser General Public License as
07: * published by the Free Software Foundation; either version 2.1 of
08: * the License, or (at your option) any later version.
09: *
10: * This software is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this software; if not see the FSF site:
17: * http://www.fsf.org/ and search for the LGPL License document there.
18: */
19: package defaultvalues.ifaces;
20:
21: /**
22: * This interface is generated, do not modify it!
23: *
24: * @author <a href="mailto:richard_opalka@yahoo.com">Richard Opalka</a>
25: * @version 1.0
26: */
27: public interface DefaultValues {
28:
29: boolean getBooleanPrimitive();
30:
31: byte getBytePrimitive();
32:
33: char getCharPrimitive();
34:
35: short getShortPrimitive();
36:
37: int getIntPrimitive();
38:
39: long getLongPrimitive();
40:
41: float getFloatPrimitive();
42:
43: double getDoublePrimitive();
44:
45: Boolean getBoolean();
46:
47: Byte getByte();
48:
49: Character getCharacter();
50:
51: Short getShort();
52:
53: Integer getInteger();
54:
55: Long getLong();
56:
57: Float getFloat();
58:
59: Double getDouble();
60:
61: String getString();
62:
63: java.math.BigInteger getBigInteger();
64:
65: java.math.BigDecimal getBigDecimal();
66:
67: org.w3c.dom.Element getElement();
68:
69: Boolean[] getBooleanArray();
70:
71: }
|