All Downloads are FREE. Search and download functionalities are using the official Maven repository.

react4j.annotations.PostMount Maven / Gradle / Ivy

The newest version!
package react4j.annotations;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 * Identifies a method that is called after a view is mounted or attached to the DOM.
 * There must only be one method annotated with this annotation in a view.
 * This method is invoked in the "commit" phase using reacts 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 {@link View}
  • *
  • * Should not be public as not expected to be invoked outside the view. A warning will be generated but can * be suppressed by the {@link SuppressWarnings} or {@link SuppressReact4jWarnings} annotations with a key * "React4j:PublicMethod". This warning is also suppressed by the annotation processor if it is implementing * an interface method. *
  • *
  • * Should not be protected if in the class annotated with the {@link View} annotation as the method is not * expected to be invoked outside the view. A warning will be generated but can be suppressed by the * {@link SuppressWarnings} or {@link SuppressReact4jWarnings} annotations with a key "React4j:ProtectedMethod". *
  • *
*/ @Documented @Target( ElementType.METHOD ) public @interface PostMount { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy