Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 15970 invoked from network); 21 Feb 2008 19:44:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Feb 2008 19:44:21 -0000 Received: (qmail 80844 invoked by uid 500); 21 Feb 2008 19:44:15 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 80555 invoked by uid 500); 21 Feb 2008 19:44:14 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 80545 invoked by uid 99); 21 Feb 2008 19:44:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 11:44:14 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Feb 2008 19:43:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BA0AD1A9832; Thu, 21 Feb 2008 11:43:58 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r629953 - /commons/proper/proxy/branches/proxy-1.0-work/src/main/java/org/apache/commons/proxy/interceptor/MethodFilter.java Date: Thu, 21 Feb 2008 19:43:57 -0000 To: commits@commons.apache.org From: jcarman@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080221194358.BA0AD1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 ); }