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 protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to