LML Schema Documentation

Table of Contents

top

Schema Document Properties

Target Namespace http://eclipse.org/ptp/lml
Element and Attribute Namespaces
  • Global element and attribute declarations belong to this schema's target namespace.
  • By default, local element declarations have no namespace.
  • By default, local attribute declarations have no namespace.
Schema Composition

Declared Namespaces

Prefix Namespace
Default namespace http://www.w3.org/2001/XMLSchema
xml http://www.w3.org/XML/1998/namespace
lml http://eclipse.org/ptp/lml
Schema Component Representation
<schema targetNamespace="http://eclipse.org/ptp/lml">
<include schemaLocation="lgui.xsd"/>
<include schemaLocation="entities.xsd"/>
...
</schema>
top

Global Definitions

Complex Type: infobox_type

Super-types: lml:gobject_type < infobox_type (by extension)
Sub-types: None
Name infobox_type
Abstract no
XML Instance Representation
<...
type="NCName [0..1] ?"/>
Schema Component Representation
<complexType name="infobox_type">
<complexContent>
<extension base=" lml:gobject_type ">
<attribute name="type" type=" NCName " default="notype"/>
</extension>
</complexContent>
</complexType>
top

Complex Type: textbox_type

Super-types: lml:gobject_type < textbox_type (by extension)
Sub-types: None
Name textbox_type
Abstract no
XML Instance Representation
<...>
Start Choice [1]
<text> string </text> [1]
<info> lml:textinfo_type </info> [1]
End Choice
</...>
Schema Component Representation
<complexType name="textbox_type">
<complexContent>
<extension base=" lml:gobject_type ">
<choice>
<element name="text" type=" string "/>
<element name="info" type=" lml:textinfo_type "/>
</choice>
</extension>
</complexContent>
</complexType>
top

Complex Type: textinfo_type

Super-types: None
Sub-types: None
Name textinfo_type
Abstract no
XML Instance Representation
<...>
<data> lml:infodata_type </data> [0..*]
</...>
Schema Component Representation
<complexType name="textinfo_type">
<sequence>
<element name="data" type=" lml:infodata_type " maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</complexType>
top