Repainting (enum)

Whether a component is unchanging and so does not require repainting.

API

Repainting.java
enum Repainting {
  REPAINT
  NO_REPAINT     (1)
  NOT_SPECIFIED     (2)
}
1 NO_REPAINT

Equivalent to @PropertyLayout(unchanging=true) prior to Causeway 2.x

2 NOT_SPECIFIED

Ignore the value provided by this annotation (meaning that the framework will keep searching, in meta annotations or superclasses/interfaces).

Members

NO_REPAINT

Equivalent to @PropertyLayout(unchanging=true) prior to Causeway 2.x

NOT_SPECIFIED

Ignore the value provided by this annotation (meaning that the framework will keep searching, in meta annotations or superclasses/interfaces).