Author: pwang
Date: 2010-10-25 10:22:37 -0700 (Mon, 25 Oct 2010)
New Revision: 22355

Modified:
   core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilter.java
Log:
method name changed, accept to accepts

Modified: core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilter.java
===================================================================
--- core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilter.java 
2010-10-25 17:19:48 UTC (rev 22354)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilter.java 
2010-10-25 17:22:37 UTC (rev 22355)
@@ -19,7 +19,7 @@
         * @param category The data category of URI.
         * @return True if we believe the URI can be read, false otherwise.
         */
-       public boolean accept(URI uri, DataCategory category); 
+       public boolean accepts(URI uri, DataCategory category); 
 
        /**
         * A method that attempts to determine whether the specified 
InputStream can be read
@@ -28,7 +28,7 @@
         * @param category The data category of the input steam.
         * @return True if we believe the stream can be read, false otherwise.
         */
-       public boolean accept(InputStream stream, DataCategory category);
+       public boolean accepts(InputStream stream, DataCategory category);
 
        /**
         * Returns a list of file extensions (xml, xgmml, sif) suitable for for 
use

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to