Janu
Posts: 8
Nickname: janu
Registered: May, 2002
|
|
Reading From File
|
Posted: Aug 17, 2002 1:51 AM
|
|
Advertisement
|
I am developing a tool Called Bean Developer. Which Creates JavaBeans on providing the properties and there data types and the Class Name.
For example i want to create bean with property name
I will provide the following for the Applet (UI is designed to accept all this stuff) Class name : LoginFormBean
Property Name : name Property Data Type : String
This Creates the following java File LoginFormBean.java
public class LoginFormBean
{
private String _name;
public void setName(String name)
{
_name = name;
}
public String getName()
{
return _name;
}
}
Creating Beans is working fine. Problem lies in Editing the Bean.I want to editing Bean,like adding properties or deleting properties etc.
So how can i read all the properties available from the given java file
Any help will be appreciated.
Thanx Janu
|
|