Java - Reflection?
i have one class called "MainClass" and this class contain setter and getter method like
class MainClass{
int intValue;
String str;
boolean bool;
int getInt(){}
void setInt(){}
String getStr(){}
void setStr(){}
boolean isBool(){}
}
how can i get the setter methods from the MainClass using Reflection mechanism?
Please help me guys,
Thanks
tamil

