TMF: Refactor XML schema files
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.analysis.xml.core / src / org / eclipse / linuxtools / tmf / analysis / xml / core / module / xmlCommon.xsd
CommitLineData
f47f1bbe
GB
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!-- ***************************************************************************
3 * Copyright (c) 2014 École Polytechnique de Montréal
4 *
5 * All rights reserved. This program and the accompanying materials are
6 * made available under the terms of the Eclipse Public License v1.0 which
7 * accompanies this distribution, and is available at
8 * http://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors:
11 * Florian Wininger - Initial API and implementation
12 *************************************************************************** -->
13<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
14 attributeFormDefault="unqualified" elementFormDefault="qualified">
15
16 <xs:complexType name="definedValue">
17 <xs:attribute name="name" type="xs:string" use="required" />
18 <xs:attribute name="value" type="xs:string" use="required" />
19 <xs:attribute name="color" type="xs:string" use="optional" />
20 </xs:complexType>
21
22 <xs:complexType name="location">
23 <xs:sequence>
24 <xs:element maxOccurs="unbounded" minOccurs="0" name="stateAttribute" type="stateAttribute" />
25 </xs:sequence>
26 <xs:attribute name="id" type="xs:string" use="required" />
27 <xs:anyAttribute />
28 </xs:complexType>
29
30</xs:schema>
This page took 0.0261 seconds and 5 git commands to generate.