Author: mes
Date: 2010-09-09 09:47:31 -0700 (Thu, 09 Sep 2010)
New Revision: 21758

Added:
   core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java
   
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReaderManager.java
Removed:
   core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReader.java
   
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReaderManager.java
Log:
Changed CyDataTable name to CyTable

Deleted: 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReader.java
===================================================================
--- 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReader.java   
    2010-09-09 16:47:26 UTC (rev 21757)
+++ 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReader.java   
    2010-09-09 16:47:31 UTC (rev 21758)
@@ -1,9 +0,0 @@
-package org.cytoscape.io.read;
-
-import org.cytoscape.model.CyDataTable;
-import org.cytoscape.work.Task;
-
-public interface CyDataTableReader extends Task{
-
-       public CyDataTable[] getCyDataTables();
-}

Deleted: 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReaderManager.java
===================================================================
--- 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReaderManager.java
        2010-09-09 16:47:26 UTC (rev 21757)
+++ 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReaderManager.java
        2010-09-09 16:47:31 UTC (rev 21758)
@@ -1,60 +0,0 @@
-/*
- Copyright (c) 2006, 2007, 2010, The Cytoscape Consortium (www.cytoscape.org)
-
- This library is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as published
- by the Free Software Foundation; either version 2.1 of the License, or
- any later version.
-
- This library is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF
- MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  The software and
- documentation provided hereunder is on an "as is" basis, and the
- Institute for Systems Biology and the Whitehead Institute
- have no obligations to provide maintenance, support,
- updates, enhancements or modifications.  In no event shall the
- Institute for Systems Biology and the Whitehead Institute
- be liable to any party for direct, indirect, special,
- incidental or consequential damages, including lost profits, arising
- out of the use of this software and its documentation, even if the
- Institute for Systems Biology and the Whitehead Institute
- have been advised of the possibility of such damage.  See
- the GNU Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with this library; if not, write to the Free Software Foundation,
- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
- */
-package org.cytoscape.io.read;
-
-
-import java.io.InputStream;
-import java.net.URI;
-import org.cytoscape.work.TaskIterator;
-
-
-/**
- * Central registry for all Cytoscape import classes.
- */
-public interface CyDataTableReaderManager {
-
-       /**
-        * Given a URI this method will attempt to find a 
CyDataTableReaderFactory
-        * that can read the URI, will set the InputStream for the factory and
-        * will return the reader task.
-        * @param uri The URI we're attempting to read. 
-        * @return A reader than can read the specified URI. Will return null
-        * if no reader can be found.
-        */
-        CyDataTableReader getReader(URI uri); 
-
-       /**
-        * Given an InputStream this method will attempt to find a 
CyDataTableReaderFactory
-        * that can read the stream, will set the InputStream for the factory 
and
-        * will return the reader task.
-        * @param stream The input stream we're attempting to read. 
-        * @return A reader than can read the specified stream. Will return null
-        * if no reader can be found.
-        */
-       CyDataTableReader getReader(InputStream stream); 
-}

Copied: 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java (from 
rev 21750, 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReader.java)
===================================================================
--- core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java   
                        (rev 0)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReader.java   
2010-09-09 16:47:31 UTC (rev 21758)
@@ -0,0 +1,9 @@
+package org.cytoscape.io.read;
+
+import org.cytoscape.model.CyTable;
+import org.cytoscape.work.Task;
+
+public interface CyTableReader extends Task{
+
+       public CyTable[] getCyDataTables();
+}

Copied: 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReaderManager.java
 (from rev 21750, 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyDataTableReaderManager.java)
===================================================================
--- 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReaderManager.java
                            (rev 0)
+++ 
core3/io-api/trunk/src/main/java/org/cytoscape/io/read/CyTableReaderManager.java
    2010-09-09 16:47:31 UTC (rev 21758)
@@ -0,0 +1,60 @@
+/*
+ Copyright (c) 2006, 2007, 2010, The Cytoscape Consortium (www.cytoscape.org)
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 2.1 of the License, or
+ any later version.
+
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF
+ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  The software and
+ documentation provided hereunder is on an "as is" basis, and the
+ Institute for Systems Biology and the Whitehead Institute
+ have no obligations to provide maintenance, support,
+ updates, enhancements or modifications.  In no event shall the
+ Institute for Systems Biology and the Whitehead Institute
+ be liable to any party for direct, indirect, special,
+ incidental or consequential damages, including lost profits, arising
+ out of the use of this software and its documentation, even if the
+ Institute for Systems Biology and the Whitehead Institute
+ have been advised of the possibility of such damage.  See
+ the GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this library; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+package org.cytoscape.io.read;
+
+
+import java.io.InputStream;
+import java.net.URI;
+import org.cytoscape.work.TaskIterator;
+
+
+/**
+ * Central registry for all Cytoscape import classes.
+ */
+public interface CyTableReaderManager {
+
+       /**
+        * Given a URI this method will attempt to find a 
CyDataTableReaderFactory
+        * that can read the URI, will set the InputStream for the factory and
+        * will return the reader task.
+        * @param uri The URI we're attempting to read. 
+        * @return A reader than can read the specified URI. Will return null
+        * if no reader can be found.
+        */
+        CyTableReader getReader(URI uri); 
+
+       /**
+        * Given an InputStream this method will attempt to find a 
CyDataTableReaderFactory
+        * that can read the stream, will set the InputStream for the factory 
and
+        * will return the reader task.
+        * @param stream The input stream we're attempting to read. 
+        * @return A reader than can read the specified stream. Will return null
+        * if no reader can be found.
+        */
+       CyTableReader getReader(InputStream stream); 
+}

-- 
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