Eclipse: Generate Getters and Setters
Eclipse: Generate Getters and Setters
- Subject: Eclipse: Generate Getters and Setters
- From: "Shravan Kumar. M" <email@hidden>
- Date: Fri, 26 Feb 2010 13:54:43 -0800 (PST)
Hi Group,
When ever I use Source -> Generate Getters and Setters... function in Eclipse it generates getter method as of Java Bean style like:
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
But I wish the getter method generates like a native WO getter method i.e.,
public String name() {
return name;
}
Is there any setting I can modify to achieve this? Please advise.
Thank You in advance,
Shravan Kumar. M
----------------------------------------
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden