Hi,
Right now, an annotation for a field has to be defined on the getter method.
ex:
class Mycontent
{
private String path;
....
@field (path=true)
public String getPath()
{
return path;
}
}
I would like to set the annotation before the attribute def like :
class Mycontent
{
@field (path=true) private String path;
....
public String getPath()
{
return path;
}
}
Is it ok for you ?
Christophe
