Name: rmT116609 Date: 07/25/2004
A DESCRIPTION OF THE REQUEST :
This annotation may be used by code generator to mark generated classes.
Tools (beautifiers, static analyzers etc) may check if the class is generated or not.
JUSTIFICATION :
See above
---------- BEGIN SOURCE ----------
package java.lang;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Generated {
String generator();
}
---------- END SOURCE ----------
(Incident Review ID: 287011)
======================================================================
A DESCRIPTION OF THE REQUEST :
This annotation may be used by code generator to mark generated classes.
Tools (beautifiers, static analyzers etc) may check if the class is generated or not.
JUSTIFICATION :
See above
---------- BEGIN SOURCE ----------
package java.lang;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Generated {
String generator();
}
---------- END SOURCE ----------
(Incident Review ID: 287011)
======================================================================