Author: pwang
Date: 2010-10-21 14:41:52 -0700 (Thu, 21 Oct 2010)
New Revision: 22337
Modified:
core3/io-api/trunk/src/main/java/org/cytoscape/io/DataCategory.java
Log:
Update doc
Modified: core3/io-api/trunk/src/main/java/org/cytoscape/io/DataCategory.java
===================================================================
--- core3/io-api/trunk/src/main/java/org/cytoscape/io/DataCategory.java
2010-10-21 21:15:08 UTC (rev 22336)
+++ core3/io-api/trunk/src/main/java/org/cytoscape/io/DataCategory.java
2010-10-21 21:41:52 UTC (rev 22337)
@@ -4,5 +4,33 @@
* An enum that captures the types of data the IO package can read and write.
*/
public enum DataCategory {
- NETWORK, TABLE, IMAGE, PROPERTIES, SESSION, UNSPECIFIED;
+ /**
+ * Data to be import/export is NETWORK
+ */
+ NETWORK,
+
+ /**
+ * Data to be import/export is Table
+ */
+ TABLE,
+
+ /**
+ * Data to be import/export is Image
+ */
+ IMAGE,
+
+ /**
+ * Data to be import/export is Properties
+ */
+ PROPERTIES,
+
+ /**
+ * Data to be import/export is CySession
+ */
+ SESSION,
+
+ /**
+ * Data to be import/export is not specified (unknown)
+ */
+ UNSPECIFIED;
}
--
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.