@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface PropertyAccessor
Annotates DOM methods that are shortcuts to long call chains. For example, if you often need
to write getFoo().getBar().getZip(), you can instead create a method getFBZ() and annotate it
with @PropertyAccessor({"foo", "bar", "zip"}).