Author: jcarman
Date: Thu Feb 21 11:43:56 2008
New Revision: 629953
URL: http://svn.apache.org/viewvc?rev=629953&view=rev
Log:
Added javadocs
Modified:
commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java
Modified:
commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java
URL:
http://svn.apache.org/viewvc/commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java?rev=629953&r1=629952&r2=629953&view=diff
==============================================================================
---
commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java
(original)
+++
commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java
Thu Feb 21 11:43:56 2008
@@ -31,6 +31,11 @@
// Other Methods
//----------------------------------------------------------------------------------------------------------------------
+ /**
+ * Returns whether or not this filter accepts this method.
+ * @param method the method
+ * @return whether or not this filter accepts this method
+ */
public boolean accepts( Method method );
}