String mname = "set" + buff.toString();
String altname = mname + "Text";
// first try to find a match for alternate method name, with text value and possibly unmarshaller
Method method = null;
Field field = null;
String tname = null;
Class clas = obj.getClass();
outer: while (!clas.getName().equals("java.lang.Object")) {
Method[] methods = clas.getDeclaredMethods();
for (int i = 0; i < methods.length; i++) {
Method match = methods[i];
if (altname.equals(match.getName())) {
Class[] types = match.getParameterTypes();
if (types.length == 1 || (types.length == 2 && types[1] == IUnmarshallingContext.class)) {
if (types[0] == String.class) {
tname = String.class.getName();
try {
match.setAccessible(true);
} catch (SecurityException e) { /* deliberately empty */
}
method = match;
break outer;
}
}
}
}
clas = clas.getSuperclass();
}
if (method == null) {
// no match on alternate method name, next check for regular method
clas = obj.getClass();
outer: while (!clas.getName().equals("java.lang.Object")) {
Method[] methods = clas.getDeclaredMethods();
for (int i = 0; i < methods.length; i++) {
Method match = methods[i];
if (mname.equals(match.getName())) {
Class[] types = match.getParameterTypes();
if (types.length == 1) {
tname = types[0].getName();
try {
match.setAccessible(true);
} catch (SecurityException e) { /* deliberately empty */
}
method = match;
break outer;
}
}
}
clas = clas.getSuperclass();
}
if (method == null) {
// still no match, finally try to find as a field
clas = obj.getClass();
while (!clas.getName().equals("java.lang.Object")) {
try {
field = clas.getDeclaredField(fname);
try {
field.setAccessible(true);
} catch (SecurityException e) { /* deliberately empty */
}
tname = field.getType().getName();
break;
} catch (NoSuchFieldException e) {
clas = clas.getSuperclass();
}
}
if (field == null) {
throw new IllegalArgumentException("Parameter " + key + " not found");
}
}
}
if ("boolean".equals(tname) || "java.lang.Boolean".equals(tname)) {
// convert text to boolean value
if ("true".equals(value) || "1".equals(value)) {
value = Boolean.TRUE;
} else if ("false".equals(value) || "0".equals(value)) {
value = Boolean.FALSE;
} else {
throw new IllegalArgumentException("Unknown value '" + value
+ "' for boolean parameter " + key);
}
} else if ("[Ljava.lang.String;".equals(tname)) {
// deserialize token list to string array
try {
value = org.jibx.runtime.Utility.deserializeTokenList((String)value);
} catch (JiBXException e) {
throw new IllegalArgumentException("Error processing list value + '" + value +
"': " + e.getMessage());
}
} else if ("int".equals(tname) || "java.lang.Integer".equals(tname)) {
// convert text to int value
try {
value = new Integer(Utility.parseInt((String)value));
} catch (JiBXException e) {
throw new IllegalArgumentException("Error processing int value + '" + value +
"': " + e.getMessage());
}
} else if ("long".equals(tname) || "java.lang.Long".equals(tname)) {
// convert text to long value
try {
value = new Long(Utility.parseLong((String)value));
} catch (JiBXException e) {
throw new IllegalArgumentException("Error processing long value + '" + value +
"': " + e.getMessage());
}
} else if ("float".equals(tname) || "java.lang.Float".equals(tname)) {
// convert text to float value
try {
value = new Float(Utility.parseFloat((String)value));
} catch (JiBXException e) {
throw new IllegalArgumentException("Error processing float value + '" + value +
"': " + e.getMessage());
}
} else if ("double".equals(tname) || "java.lang.Double".equals(tname)) {
// convert text to float value
try {
value = new Double(Utility.parseDouble((String)value));
} catch (JiBXException e) {
throw new IllegalArgumentException("Error processing double value + '" + value +
"': " + e.getMessage());
}
} else if (!"java.lang.String".equals(tname)) {
throw new IllegalArgumentException("Cannot handle value of type " + tname);
}
if (method != null) {
// set value using method
if (method.getParameterTypes().length == 1) {
method.invoke(obj, new Object[] { value });
} else {
method.invoke(obj, new Object[] { value, null });
}
} else {
// set value using field
field.set(obj, value);
}
fail = false;
} catch (IllegalAccessException e) {