You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2008/08/13 23:43:33 UTC

svn commit: r685685 [2/2] - in /velocity/engine/trunk/src/java/org/apache/velocity: app/ app/event/ app/event/implement/ context/ exception/ io/ runtime/ runtime/directive/ runtime/log/ runtime/parser/ runtime/parser/node/ runtime/resource/loader/ runt...

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/Introspector.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/Introspector.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/Introspector.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/Introspector.java Wed Aug 13 14:43:27 2008
@@ -58,6 +58,7 @@
 {
     /**
      * @param log A Log object to use for the introspector.
+     * @since 1.5
      */
     public Introspector(final Log log)
     {

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorBase.java Wed Aug 13 14:43:27 2008
@@ -109,6 +109,7 @@
      * Return the internal IntrospectorCache object.
      * 
      * @return The internal IntrospectorCache object.
+     * @since 1.5
      */
     protected IntrospectorCache getIntrospectorCache()
     {

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCache.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCache.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCache.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCache.java Wed Aug 13 14:43:27 2008
@@ -24,6 +24,7 @@
  *
  * @author <a href="mailto:henning@apache.org">Henning P. Schmiedehausen</a>
  * @version $Id$
+ * @since 1.5
  */
 public interface IntrospectorCache {
 

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCacheImpl.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCacheImpl.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCacheImpl.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/IntrospectorCacheImpl.java Wed Aug 13 14:43:27 2008
@@ -32,6 +32,7 @@
  *
  * @author <a href="mailto:henning@apache.org">Henning P. Schmiedehausen</a>
  * @version $Id$
+ * @since 1.5
  */
 public final class IntrospectorCacheImpl implements IntrospectorCache
 {

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorControl.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorControl.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorControl.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorControl.java Wed Aug 13 14:43:27 2008
@@ -24,6 +24,7 @@
  *
  * @author <a href="Will Glass-Husain">wglass@forio.com</a>
  * @version $Id$
+ * @since 1.5
  */
 public interface SecureIntrospectorControl
 {

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorImpl.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorImpl.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorImpl.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureIntrospectorImpl.java Wed Aug 13 14:43:27 2008
@@ -34,6 +34,7 @@
  *
  * @author <a href="mailto:wglass@forio.com">Will Glass-Husain</a>
  * @version $Id$
+ * @since 1.5
  */
 public class SecureIntrospectorImpl extends Introspector implements SecureIntrospectorControl
 {

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureUberspector.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureUberspector.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureUberspector.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/SecureUberspector.java Wed Aug 13 14:43:27 2008
@@ -38,6 +38,7 @@
  * 
  * @author <a href="mailto:wglass@forio.com">Will Glass-Husain</a>
  * @version $Id$
+ * @since 1.5
  */
 public class SecureUberspector extends UberspectImpl implements RuntimeServicesAware
 {

Modified: velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java?rev=685685&r1=685684&r2=685685&view=diff
==============================================================================
--- velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java (original)
+++ velocity/engine/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java Wed Aug 13 14:43:27 2008
@@ -77,6 +77,7 @@
      *  else.
      *
      * @param log The logger instance to use.
+     * @since 1.5
      */
     public void setLog(Log log)
     {