Is there a better way to create a "code template" for Eclipse that generates at the same time the property and getter/setter?
I can't find any way to camel the property name in the setter and getter code
private ${propertyType} ${propertyName};
public ${propertyType} get${PropertyName} ()
{
return ${propertyName};
}
public void set${PropertyName} (${propertyType} ${propertyName})
{
this.${propertyName} = ${propertyName};
}
Is there any well done code repository on the web?
Any "code template" reference?