changed retention policy in @Internal to RUNTIME, also added a string parameter for custom messages

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@892460 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2009-12-19 11:25:39 +00:00
parent 4a5154b3f3
commit 9da4551038

View File

@ -32,7 +32,7 @@ import java.lang.annotation.Documented;
* @since POI-3.6 * @since POI-3.6
*/ */
@Documented @Documented
@Retention(RetentionPolicy.SOURCE) @Retention(RetentionPolicy.RUNTIME)
public @interface Internal { public @interface Internal {
String value() default "";
} }