Author: ggregory Date: Sat Jul 28 14:43:13 2018 New Revision: 1836913 URL: http://svn.apache.org/viewvc?rev=1836913&view=rev Log: Javadoc clean ups.
Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/Repository.java Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/Repository.java URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/Repository.java?rev=1836913&r1=1836912&r2=1836913&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/Repository.java (original) +++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/util/Repository.java Sat Jul 28 14:43:13 2018 @@ -30,43 +30,45 @@ import org.apache.bcel.classfile.JavaCla public interface Repository { /** - * Store the provided class under "clazz.getClassName()" + * Stores the provided class under "clazz.getClassName()" */ void storeClass( JavaClass clazz ); /** - * Remove class from repository + * Removes class from repository */ void removeClass( JavaClass clazz ); /** - * Find the class with the name provided, if the class + * Finds the class with the name provided, if the class * isn't there, return NULL. */ JavaClass findClass( String className ); /** - * Find the class with the name provided, if the class + * Finds the class with the name provided, if the class * isn't there, make an attempt to load it. */ JavaClass loadClass( String className ) throws java.lang.ClassNotFoundException; /** - * Find the JavaClass instance for the given run-time class object + * Finds the JavaClass instance for the given run-time class object */ JavaClass loadClass( Class<?> clazz ) throws java.lang.ClassNotFoundException; - /** Clear all entries from cache. + /** + * Clears all entries from cache. */ void clear(); - /** Get the ClassPath associated with this Repository + /** + * Gets the ClassPath associated with this Repository */ ClassPath getClassPath(); }