Author: Mathieu
Date: 2009-03-09 05:58:16 -0700 (Mon, 09 Mar 2009)
New Revision: 16180

Added:
   core3/work-api/trunk/src/main/java/org/cytoscape/work/util/InputStream.java
Log:


Added: 
core3/work-api/trunk/src/main/java/org/cytoscape/work/util/InputStream.java
===================================================================
--- core3/work-api/trunk/src/main/java/org/cytoscape/work/util/InputStream.java 
2009-03-09 06:19:09 UTC (rev 16179)
+++ core3/work-api/trunk/src/main/java/org/cytoscape/work/util/InputStream.java 
2009-03-09 12:58:16 UTC (rev 16180)
@@ -0,0 +1,26 @@
+package org.cytoscape.work.util;
+
+
+public class InputStream{
+       
+       Object o;
+       Class<?> t;
+       
+       public InputStream(Object obj,Class<?> type){
+               this.o=obj;
+               this.t=type;
+       }
+       
+       public InputStream(Object obj){
+               this.o=obj;
+       }
+       
+       public Class<?> getType(){
+               return t;
+       }
+       
+       public Object getFileURL(){
+               return o;
+       }
+       
+}
\ No newline at end of file


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