vote up 0 vote down star

I'm trying to understand Java reflecton and am encountering difficulties when working with non-Integer setter methods.

As an example, how can I resolve the "getDeclaredMethod()" call below?

import java.lang.reflect.*;

class Target {
    String value;

    public Target() { this.value = new String("."); }
    public void setValue(String value) { this.value = value; }
    public String getValue() { return this.value; }
}

class ReflectionTest {
    public static void main(String args[]) {
        try {
            Class myTarget = Class.forName("Target");

            Method myMethod;
            myMethod = myTarget.getDeclaredMethod("getValue");  // Works!
            System.out.println("Method Name: " + myMethod.toString());

            Class params[] = new Class[1];
            //params[0] = String.TYPE; // ?? What is the appropriate Class TYPE?
            myMethod = myTarget.getDeclaredMethod("setValue", params); // ? Help ?
            System.out.println("Method Name: " + myMethod.toString());

        } catch (Exception e) {
            System.out.println("ERROR");
        }
    }
}
flag

1 Answer

vote up 2 vote down check
params[0] = String.class;

Using class on String will return the Class<?> that is associated with the String class.

link|flag
1  
Ugh. I'm an idiot. Thanks! – Nate May 21 at 2:00
1  
(Oops, I didn't mean to upvote the comment!) I just wanted to add that I wasn't aware of it to the other day, so it's not exactly that obvious. – coobird May 21 at 2:03

Your Answer

Get an OpenID
or

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