I am just create a One generic method using Method Reflection API. In This Method I am trying to get a particulate method(getter method / setter method) value but I am stuck I don't know how to do this. I am Abel to get all the method Name using Method Reflection API but not Abel to get value of that method. So please help me.

here is my code......

/*
propertyNames List is contain two records.

   and that records are two different EntityName(Variable Name)

   ex. in my class i have declared two Entity(Variable)
   private Integer productId;
   private Integer bomBucket;

   so propertyNames List is contain [productId ,  bomBucket] this two records.

*/

 public <T>void fillList(List<String> propertyNames , T clas){

    try{
        for(Object entity : entities.keySet()){
            if(propertyNames != null && propertyNames.size() > 0){  
                Method[] methodList = clas.getClass().getMethods(); 
                Method methodName;
                for (String propertyName : propertyNames) {
                    for(Method method : methodList){
                        if(method.getName().trim().startsWith("set")){
                           if(propertyName.trim().equalsIgnoreCase(method.getName().substring(3, method.getName().trim().length()))){

                               methodName = clas.getClass().getMethod(method.getName().trim(),new Class[]{Integer.class});

                               System.out.println("HERE I GET METHOD NAME ::: " + methodName.getName());

                               /*
                                * here one by one i am getting all the Setter methods name from the class .
                                * but i want a that Setter methods values. Not return type.  
                                */
                           }
                       } 
                   }   
                }
            }
        }   

    }catch (Exception e) {
        e.printStackTrace();
    }
}
link|improve this question

Can you post code? Your question is barely making sense. – Vineet Reynolds Sep 19 '11 at 14:53
I added my code please check it. – Jimit Tank Sep 20 '11 at 5:45
feedback

2 Answers

What do you mean by "value of the method" Do you mean the method's return type, or do you want to invoke that method, on a certain instance of it's parent class, maybe with some argumetns, and then get the value that it returns? In this case, if you're method is not public you must first call setAccessible(true) on the method object before you invoke it:

//get instance of the class that has your method
    DsrProcessor dsrProcessor = DsrProcessor.class.newInstance();
    //get method object (by passing in it's name and the list of argument types he's accepting - echo(String):
    Method m = DsrProcessor.class.getMethod("echo", String.class);
    //use reflection to invoke the method passing the instance of it's class and a list of arguments :
    String methodReturnValue = (String) m.invoke(dsrProcessor, "Hello");
    //do something with what the method returned
    System.out.println(methodReturnValue);//prints: "echo:hello"
link|improve this answer
feedback

You can also use the java.beans.Introspector class and one of its getBeanInfo method. It returns an instance of BeanInfo which references all property descriptors java.beans.PropertyDescriptor.

link|improve this answer
than's for your answer but I have also used PropertyDescriptor but still I did't get any solution. – Jimit Tank Sep 21 '11 at 5:24
feedback

Your Answer

 
or
required, but never shown

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