<xs:complexType name="connectFromType">
<xs:sequence>
<!--xs:element name="id" type="xs:IDREF"/-->
<xs:element name="id">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="apex:idOrAll">
<xs:attribute name="mode" default="name">
<xs:annotation>
<xs:documentation>Method of matching the given id.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="name">
<xs:annotation>
<xs:documentation>Exactly match the given ID</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="regexp">
<xs:annotation>
<xs:documentation>Use regular expression to match an ID</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="wildcard">
<xs:annotation>
<xs:documentation>Use wildcards (*,?,[]) to match an ID</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="channel">
<xs:annotation>
<xs:documentation>The channel to be used. Channels are zero based, ie the first channel is 0, the second 1, etc. This parameter can have an ID for later referral.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:unsignedInt">
<xs:attributeGroup ref="apex:filterParam">
</xs:attributeGroup>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="apex:filterParam"/>
</xs:complexType> |