summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-07-07 14:32:39 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-07-07 14:32:39 +0000
commit45c57fedb62abd121c7d8858c11fc90e6fdef6ff (patch)
tree27650aa379f307b3f40ddfd27fee13ecc1fb9ecc /tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd
parent7362d8fbf37a7f46f445c9b0abcc17d5f0f97790 (diff)
Tag for SCA 1.3 RC1
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@674503 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd')
-rw-r--r--tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd40
1 files changed, 40 insertions, 0 deletions
diff --git a/tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd b/tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd
new file mode 100644
index 0000000000..44f14e5ed5
--- /dev/null
+++ b/tags/java/sca/1.3-RC1/tools/eclipse/plugins/core/xsd/sca-interface-cpp.xsd
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- (c) Copyright SCA Collaboration 2006 -->
+<schema xmlns="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://www.commonj.org/xmlns/sca/1.0/"
+ xmlns:sca="http://www.commonj.org/xmlns/sca/1.0/"
+ xmlns:sdo="commonj.sdo/XML"
+ elementFormDefault="qualified">
+
+ <include schemaLocation="sca-core.xsd"/>
+
+ <element name="interface.cpp" type="sca:CPPInterface" substitutionGroup="sca:interface"/>
+
+ <complexType name="CPPInterface">
+ <complexContent>
+ <extension base="sca:Interface">
+ <sequence>
+ <element name="method" type="sca:CPPMethod" minOccurs="0" maxOccurs="unbounded" />
+ <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="header" type="NCName" use="required"/>
+ <attribute name="class" type="Name" use="required"/>
+ <attribute name="callbackHeader" type="NCName" use="optional"/>
+ <attribute name="callbackClass" type="Name" use="optional"/>
+ <attribute name="remotable" type="boolean" use="optional"/>
+ <anyAttribute namespace="##any" processContents="lax"/>
+ </extension>
+ </complexContent>
+ </complexType>
+
+ <complexType name="CPPMethod">
+ <complexContent>
+ <attribute name="name" type="NCName" use="required"/>
+ <attribute name="oneWay" type="boolean" use="optional"/>
+ <attribute name="endConversation" type="boolean" use="optional"/>
+ <anyAttribute namespace="##any" processContents="lax"/>
+ </complexContent>
+ </complexType>
+
+</schema>
+