Identifies a method that is called after a component is rendered.
Render in this circumstance means that a component has been mounted on the DOM
or that changes to the component have been applied to the dom.
There must only be one method annotated with this annotation in a single component.
This method is invoked in the "commit" phase using reacts
componentDidUpdate()
and
componentDidMount()
lifecycle method.
The method must also conform to the following constraints:
- Must not be annotated with any other react4j annotation
- Must have 0 parameters
- Must not return a value
- Must not be private
- Must not be public
- Must not be static
- Must not be abstract
- Must not throw exceptions
- Must be accessible from the same package as the class annotated by
ReactComponent