dlr 2002/08/08 18:05:30 Modified: src/java/org/apache/velocity/runtime RuntimeServices.java Log: Fixed/added JavaDoc for getApplicationAttribute(), getUberspect(), getIntrospector() APIs. Revision Changes Path 1.6 +13 -5 jakarta-velocity/src/java/org/apache/velocity/runtime/RuntimeServices.java Index: RuntimeServices.java =================================================================== RCS file: /home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/RuntimeServices.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -u -r1.5 -r1.6 --- RuntimeServices.java 21 Apr 2002 18:36:06 -0000 1.5 +++ RuntimeServices.java 9 Aug 2002 01:05:30 -0000 1.6 @@ -391,14 +391,22 @@ */ public ExtendedProperties getConfiguration(); - /* - * Return the specified applcation attribute + /** + * Return the specified applcation attribute. + * + * @param key The name of the attribute to retrieve. */ public Object getApplicationAttribute( Object key ); + /** + * Returns the configured class introspection/reflection + * implemenation. + */ public Uberspect getUberspect(); + /** + * Returns the configured method introspection/reflection + * implemenation. + */ public Introspector getIntrospector(); - - }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>