I have this code:

public static final <TypeVO extends BaseVo> List<SelectItem> populateSelectBoxForType(
            final Class<TypeVO> voClass, final String fieldName) {
        List<SelectItem> listSelectBox = null;
        final List<TypeVO> vosList = GenericEjbProxyFactory
                .getGenericTopValueObjectProxy(voClass)
                .getAllValueObjects(null);
        System.out.println("loaded vosList!!!!");
        if (vosList != null) {
            listSelectBox = new ArrayList<SelectItem>();
            for (final TypeVO currVo : vosList) {
                listSelectBox.add(new SelectItem(currVo.getInternalId(), currVo.getName()));
            }
        }
        return listSelectBox;
    }

As you see here, I'm using currVo.getName because always, currVo has a name property.

I want to be able to use also other fields from this currVo which has type as voClass, but not all currVo classes will contain this field so I have to use reflection to identify these getField method, something like:

for (final TypeVO currVo : vosList) {
                for (final Method m : voClass.getMethods()) {
                    if (m.getName().contains(fieldName)) {
                        listSelectBox.add(new SelectItem(
                                currVo.getInternalId(), currVo.m));
                    }
                }
            }

What I do not know is HOW I can use that specific method's value when I find it, exactly like currVo.getName (because, of course, currVo.m is wrong)?

Eg: If fieldName is "Age" I want to put in the list: currVo.getAge()... I am simply blocked here...

link|improve this question

70% accept rate
feedback

5 Answers

up vote 3 down vote accepted
m.invoke(currVo);

See also:

Also note the correct way to look for a method as suggested by Nik and Bohemian.

link|improve this answer
invoke takes two arguments. – Mat Jun 2 '11 at 11:33
4  
@Mat: It takes vararg as a second argument, which can be empty. – axtavt Jun 2 '11 at 11:34
ah, correct for JDK >= 1.5. 1.4.2 has a different signature. – Mat Jun 2 '11 at 11:39
thanks for the new signature tip - didn't realise that reflection had gone varargs – Bohemian Jun 2 '11 at 11:45
feedback

Do I understand it correctly that you want to invoke the method m on your object currVo? Then it's simply

m.invoke(currVo);
link|improve this answer
feedback

Use reflection to get the getFieldName method and invoke it, as follows:

 Method method = voClass.getMethod("get" + fieldName); // the getter with no params in the signature
 Object value = method.invoke(currVo}); // invoke with no params
 listSelectBox.add(new SelectItem(currVo.getInternalId(), value));

Note: This assumes that fieldName is leading uppercase, eg "Value", not "value", so prepending it with "get" gives the exact method name, eg "getValue"

link|improve this answer
feedback

You should use the invoke method from the Method class.

m.invoke(currVo, (Object[]) null);

(Assuming the method takes no parameter.)

This will work for JDK versions 1.4 and later, since they state:

If the number of formal parameters required by the underlying method is 0, the supplied args array may be of length 0 or null

The one-parameter version of that call will not work on older JVMs.

link|improve this answer
This is the same as m.invoke(currVo, new Object[] { null }); which may not be what you intended. – Peter Lawrey Jun 2 '11 at 11:36
i also disagree - the null is a value and makes the Object[] length 1 - it should be length zero – Bohemian Jun 2 '11 at 11:44
You are right. null is "cast" to Object[] not as an array of length 0 or 1. – Peter Lawrey Jun 2 '11 at 11:48
I was a bit off though, the explicit cast to Object[] is necessary for it to compile without warnings on 1.6 at least. – Mat Jun 2 '11 at 11:52
feedback

I am not sure if i got ur question right, but what i feel u are asking wud be answered by following code:

// Class is whatever is the type u r using
Method mthd = Class.getMethod("get" + fieldName); //in case method don't have any parameters.
listSelectBox.add(mthd.invoke(currVo));

otherwise ignore.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.