001: /*
002: * XML 2 Java Binding (X2JB) - the excellent Java tool.
003: * Copyright 2007, by Richard Opalka.
004: *
005: * This is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU Lesser General Public License as
007: * published by the Free Software Foundation; either version 2.1 of
008: * the License, or (at your option) any later version.
009: *
010: * This software is distributed in the hope that it will be useful,
011: * but WITHOUT ANY WARRANTY; without even the implied warranty of
012: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
013: * Lesser General Public License for more details.
014: *
015: * You should have received a copy of the GNU Lesser General Public
016: * License along with this software; if not see the FSF site:
017: * http://www.fsf.org/ and search for the LGPL License document there.
018: */
019: package test.sample.valid;
020:
021: /**
022: * This interface is generated, do not modify it!
023: *
024: * @author <a href="mailto:richard_opalka@yahoo.com">Richard Opalka</a>
025: * @version 1.0
026: */
027: public interface DefaultValues {
028:
029: String[] getDefaultStringArray();
030:
031: Short[] getDefaultShortArray();
032:
033: short[] getDefaultPrimitiveShortArray();
034:
035: Long[] getDefaultLongArray();
036:
037: long[] getDefaultPrimitiveLongArray();
038:
039: Integer[] getDefaultIntegerArray();
040:
041: int[] getDefaultPrimitiveIntegerArray();
042:
043: Float[] getDefaultFloatArray();
044:
045: float[] getDefaultPrimitiveFloatArray();
046:
047: Double[] getDefaultDoubleArray();
048:
049: double[] getDefaultPrimitiveDoubleArray();
050:
051: Character[] getDefaultCharacterArray();
052:
053: char[] getDefaultPrimitiveCharacterArray();
054:
055: Byte[] getDefaultByteArray();
056:
057: byte[] getDefaultPrimitiveByteArray();
058:
059: java.math.BigInteger[] getDefaultBigIntegerArray();
060:
061: java.math.BigDecimal[] getDefaultBigDecimalArray();
062:
063: UnusedIface[] getDefaultUnusedIfaceArray();
064:
065: String getElementDefaultAsString();
066:
067: Short getElementDefaultAsShort();
068:
069: short getElementDefaultAsPrimitiveShort();
070:
071: Long getElementDefaultAsLong();
072:
073: long getElementDefaultAsPrimitiveLong();
074:
075: Integer getElementDefaultAsInteger();
076:
077: int getElementDefaultAsPrimitiveInteger();
078:
079: Float getElementDefaultAsFloat();
080:
081: float getElementDefaultAsPrimitiveFloat();
082:
083: Double getElementDefaultAsDouble();
084:
085: double getElementDefaultAsPrimitiveDouble();
086:
087: Character getElementDefaultAsCharacter();
088:
089: char getElementDefaultAsPrimitiveCharacter();
090:
091: Byte getElementDefaultAsByte();
092:
093: byte getElementDefaultAsPrimitiveByte();
094:
095: java.math.BigInteger getElementDefaultAsBigInteger();
096:
097: java.math.BigDecimal getElementDefaultAsBigDecimal();
098:
099: String getAttributeDefaultAsString();
100:
101: Short getAttributeDefaultAsShort();
102:
103: short getAttributeDefaultAsPrimitiveShort();
104:
105: Long getAttributeDefaultAsLong();
106:
107: long getAttributeDefaultAsPrimitiveLong();
108:
109: Integer getAttributeDefaultAsInteger();
110:
111: int getAttributeDefaultAsPrimitiveInteger();
112:
113: Float getAttributeDefaultAsFloat();
114:
115: float getAttributeDefaultAsPrimitiveFloat();
116:
117: Double getAttributeDefaultAsDouble();
118:
119: double getAttributeDefaultAsPrimitiveDouble();
120:
121: Character getAttributeDefaultAsCharacter();
122:
123: char getAttributeDefaultAsPrimitiveCharacter();
124:
125: Byte getAttributeDefaultAsByte();
126:
127: byte getAttributeDefaultAsPrimitiveByte();
128:
129: java.math.BigInteger getAttributeDefaultAsBigInteger();
130:
131: java.math.BigDecimal getAttributeDefaultAsBigDecimal();
132:
133: interface UnusedIface {
134:
135: }
136:
137: }
|