hi, thanks for your reply so quick. because i need to find out the solution in a short time. you might be able to direct me to search for it on the right way, let make myself clearer first.
let's say i have xml configuration file looks like
<attribute name=攕urname?gt;java.lang.String</attribute>
<attribute name=攆irstname?gt;java.lang.String</attribute>
and with this xml file, i want to create class which looks like below in runtime
Public class Test{
Private String surname;
Private string firstname;
Public String getSurname(){
Return surname;
}
Public void setSurname(String surname){
This.surname=surname;
}
}
Is there any current api available for doing this?
Really appreciate your help.