Note: (Restricted functionality due to obvious reasons!)
Minimal Code ( Raw-View ) :
class EmpBean
{
private String name, branch;
public void setName(String name)
{
this.name=name;
}
public String getName()
{
return name;
}
public void setBranch(String branch)
{
this.branch = branch;
}
public String getBranch()
{
return branch;
}
}