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 757ebc4160
commit bed01967f0
1 changed files with 2 additions and 2 deletions

View File

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