Hi,
I'm trying to replace all deprecated annotations to the new ones, but I don't
know if I should use @Property of @PropertyLayout to replace @hidden since
they're both possible.
According
to:http://isis.apache.org/reference/recognized-annotations/about.htmlI should
replace @Hidden with @Property, but according
to:http://isis.apache.org/reference/recognized-annotations/PropertyLayout.htmlthe
@PropertyLayout annotation is also possible.
Old situation:
@Hidden(where = Where.ALL_TABLES)
New situation:
@Property(hidden = Where.ALL_TABLES)
or:@PropertyLayout(hidden = Where.ALL_TABLES)
I hope one of you can help me out!
Kind regards,
Yu Ri Tan