ParticleReg
Register this particle with given provider class.
This annotation should be used with @ParticleProvider
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface ParticleReg {
/**
* The particle provider.
*
* @return {@link Class}>>
*/
Class<?> value();
/**
* The register id. Can be blank.
*
* @return {@link String }
*/
String name() default "";
}