Author: mes
Date: 2010-11-05 20:41:43 -0700 (Fri, 05 Nov 2010)
New Revision: 22755
Modified:
core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilter.java
core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilterProvider.java
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java
core3/io-api/trunk/src/main/java/org/cytoscape/io/util/StreamUtil.java
core3/io-api/trunk/src/main/java/org/cytoscape/io/write/CyWriterManager.java
Log:
fixed style issues
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-11-06 02:47:13 UTC (rev 22754)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilter.java
2010-11-06 03:41:43 UTC (rev 22755)
@@ -34,25 +34,25 @@
* Returns a list of file extensions (xml, xgmml, sif) suitable for for
use
* in FileChoosers.
*/
- public Set<String> getExtensions();
+ Set<String> getExtensions();
/**
* The MIME content types suppored by this filter.
* @return A set of strings the describe the different MIME types
supported by this filter.
*/
- public Set<String> getContentTypes();
+ Set<String> getContentTypes();
/**
* A short, human readable description of the file extensions suitable
for
* display in FileChoosers.
* @return A string describing this file type.
*/
- public String getDescription();
+ String getDescription();
/**
* The DataCategory supported by this filter.
* @return The DataCategory supported by this filter.
*/
- public DataCategory getDataCategory();
+ DataCategory getDataCategory();
}
Modified:
core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilterProvider.java
===================================================================
--- core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilterProvider.java
2010-11-06 02:47:13 UTC (rev 22754)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/CyFileFilterProvider.java
2010-11-06 03:41:43 UTC (rev 22755)
@@ -9,6 +9,6 @@
/**
* Return the file filter associated with the IOFactory
*/
- public CyFileFilter getCyFileFilter();
+ CyFileFilter getCyFileFilter();
}
Modified:
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java
===================================================================
--- core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java
2010-11-06 02:47:13 UTC (rev 22754)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java
2010-11-06 03:41:43 UTC (rev 22755)
@@ -18,5 +18,5 @@
* Return an array of {...@link org.cytoscape.model.CyTable} objects.
* @return An array of {...@link org.cytoscape.model.CyTable} objects.
*/
- public CyTable[] getCyTables();
+ CyTable[] getCyTables();
}
Modified: core3/io-api/trunk/src/main/java/org/cytoscape/io/util/StreamUtil.java
===================================================================
--- core3/io-api/trunk/src/main/java/org/cytoscape/io/util/StreamUtil.java
2010-11-06 02:47:13 UTC (rev 22754)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/util/StreamUtil.java
2010-11-06 03:41:43 UTC (rev 22755)
@@ -17,7 +17,7 @@
* @param source The URL from which to generate the InputStream.
* @return An input stream from the specified URL.
*/
- public InputStream getInputStream(URL source) throws IOException;
+ InputStream getInputStream(URL source) throws IOException;
/**
* Obtain an InputStream for a given URL. Ensure proxy servers and an
input
@@ -27,13 +27,13 @@
* @param source The URL from which to generate the InputStream.
* @return An input stream from the specified URL.
*/
- public InputStream getBasicInputStream(URL source) throws IOException;
+ InputStream getBasicInputStream(URL source) throws IOException;
/**
* Obtain a {...@link java.net.URLConnectio} for a given {...@link
java.net.URL}.
* @param source The URL from which to generate the URLConnection.
* @return An URLConnection from the specified URL.
*/
- public URLConnection getURLConnection(URL source) throws IOException;
+ URLConnection getURLConnection(URL source) throws IOException;
}
Modified:
core3/io-api/trunk/src/main/java/org/cytoscape/io/write/CyWriterManager.java
===================================================================
---
core3/io-api/trunk/src/main/java/org/cytoscape/io/write/CyWriterManager.java
2010-11-06 02:47:13 UTC (rev 22754)
+++
core3/io-api/trunk/src/main/java/org/cytoscape/io/write/CyWriterManager.java
2010-11-06 03:41:43 UTC (rev 22755)
@@ -59,5 +59,5 @@
* generated by the {...@link CyWriterFactory}.
* @return A {...@link CyWriterFactory} for the appropriate filter.
*/
- public CyWriterFactory getMatchingFactory(CyFileFilter filter,
OutputStream os);
+ CyWriterFactory getMatchingFactory(CyFileFilter filter, OutputStream
os);
}
--
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.