[Clirr-devel] CVS: clirr/core/src/java/net/sf/clirr/core ScopeSelector.java,1.6,1.7
Status: Alpha
Brought to you by:
lkuehne
From: <lk...@us...> - 2005-09-05 21:51:40
|
Update of /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2771/src/java/net/sf/clirr/core Modified Files: ScopeSelector.java Log Message: javadoc fixes Index: ScopeSelector.java =================================================================== RCS file: /cvsroot/clirr/clirr/core/src/java/net/sf/clirr/core/ScopeSelector.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ScopeSelector.java 26 Aug 2005 05:35:53 -0000 1.6 +++ ScopeSelector.java 5 Sep 2005 21:51:32 -0000 1.7 @@ -79,20 +79,10 @@ } /** - * Given a BCEL object, return true if this object's scope is one of the + * Given a scoped object, return true if this object's scope is one of the * values this object is configured to match. - * <p> - * Note that BCEL classes Field and Method inherit from the AccessFlags - * base class and so are valid parameters to this method. - * <p> - * Note that despite JavaClass objects extending AccessFlags, the - * methods which determine the accessibility of a JavaClass fail - * miserably (bad bcel design) for nested classes. Therefore this - * method <i>must not</i> be passed a JavaClass object as a parameter. - * If this is done, a RuntimeException will be thrown to indicate a - * programmer error. * - * @param object is the object whose scope is to be checked. + * @param scoped is the object whose scope is to be checked. * @return true if the object is selected. */ public boolean isSelected(Scoped scoped) |