You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ye...@apache.org on 2009/12/19 12:25:40 UTC

svn commit: r892460 - /poi/trunk/src/java/org/apache/poi/util/Internal.java

Author: yegor
Date: Sat Dec 19 11:25:39 2009
New Revision: 892460

URL: http://svn.apache.org/viewvc?rev=892460&view=rev
Log:
changed retention policy in @Internal to RUNTIME, also added a string parameter for custom messages

Modified:
    poi/trunk/src/java/org/apache/poi/util/Internal.java

Modified: poi/trunk/src/java/org/apache/poi/util/Internal.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/Internal.java?rev=892460&r1=892459&r2=892460&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/Internal.java (original)
+++ poi/trunk/src/java/org/apache/poi/util/Internal.java Sat Dec 19 11:25:39 2009
@@ -32,7 +32,7 @@
  * @since POI-3.6
  */
 @Documented
-@Retention(RetentionPolicy.SOURCE)
+@Retention(RetentionPolicy.RUNTIME)
 public @interface Internal {
-
+    String value() default "";    
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org