View Javadoc

1   package org.lsst.ccs.utilities.beanutils;
2   
3   import java.lang.annotation.*;
4   
5   /**
6    * Annotates the "minimum" critical constructor of a non-bean object.
7    * @author bamade
8    */
9   @Documented
10  @Target( {ElementType.CONSTRUCTOR} )
11  @Retention(RetentionPolicy.RUNTIME)
12  public @interface CriticalCtor {
13      String[] value() ;
14  }