Author: clopes
Date: 2012-01-31 11:47:23 -0800 (Tue, 31 Jan 2012)
New Revision: 28168

Added:
   core3/impl/trunk/swing-application-impl/src/main/resources/xsd/
   
core3/impl/trunk/swing-application-impl/src/main/resources/xsd/sessionState.xsd
Log:
Bug #649 : Remove the Cysession class from the API (missing file)

Added: 
core3/impl/trunk/swing-application-impl/src/main/resources/xsd/sessionState.xsd
===================================================================
--- 
core3/impl/trunk/swing-application-impl/src/main/resources/xsd/sessionState.xsd 
                            (rev 0)
+++ 
core3/impl/trunk/swing-application-impl/src/main/resources/xsd/sessionState.xsd 
    2012-01-31 19:47:23 UTC (rev 28168)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
elementFormDefault="qualified">
+
+  <xs:element name="sessionState">
+    <xs:complexType>
+      <xs:sequence>
+        <xs:element ref="networkFrames"/>
+        <xs:element ref="cytopanels"/>
+      </xs:sequence>
+      <xs:attribute name="documentVersion" use="optional" default="1.0" 
type="xs:normalizedString"/>
+    </xs:complexType>
+  </xs:element>
+
+  <xs:element name="networkFrames">
+    <xs:complexType>
+      <xs:sequence>
+        <xs:element minOccurs="0" maxOccurs="unbounded" ref="networkFrame"/>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="networkFrame">
+    <xs:complexType>
+      <xs:attribute name="frameID" use="required" type="xs:NCName"/>
+      <xs:attribute name="x" use="required" type="xs:integer"/>
+      <xs:attribute name="y" use="required" type="xs:integer"/>
+    </xs:complexType>
+  </xs:element>
+
+  <xs:element name="cytopanels">
+    <xs:complexType>
+      <xs:sequence>
+        <xs:element maxOccurs="unbounded" ref="cytopanel"/>
+      </xs:sequence>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="cytopanel">
+    <xs:complexType>
+      <xs:sequence>
+        <xs:element ref="panelState"/>
+        <xs:element ref="selectedPanel"/>
+      </xs:sequence>
+      <xs:attribute name="id" use="required" type="xs:NCName"/>
+    </xs:complexType>
+  </xs:element>
+  <xs:element name="panelState" type="xs:NCName"/>
+  <xs:element name="selectedPanel" type="xs:NCName"/>
+  
+</xs:schema>

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