Home
last modified time | relevance | path

Searched refs:typeObject (Results 1 – 1 of 1) sorted by relevance

/AOO42X/main/wizards/com/sun/star/wizards/common/
H A DNumericalHelper.java1241 private static byte getByte(TypeObject typeObject) in getByte() argument
1244 if (typeObject.iType != BYTE_TYPE) in getByte()
1249 return ((Byte) typeObject.aValue).byteValue(); in getByte()
1255 private static char getChar(TypeObject typeObject) in getChar() argument
1258 if (typeObject.iType != CHAR_TYPE) in getChar()
1263 return ((Character) typeObject.aValue).charValue(); in getChar()
1269 private static short getShort(TypeObject typeObject) in getShort() argument
1272 if (typeObject.iType != SHORT_TYPE) in getShort()
1277 return ((Short) typeObject.aValue).shortValue(); in getShort()
1286 static int getInt(TypeObject typeObject) in getInt() argument
[all …]