analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / tmf / analysis / xml / core / module / xmlDefinition.xsd
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:include schemaLocation="xmlCommon.xsd" />
17 <xs:include schemaLocation="xmlStateProvider.xsd" />
18 <xs:include schemaLocation="xmlView.xsd" />
19 <xs:element name="tmfxml">
20 <xs:complexType>
21 <xs:choice maxOccurs="unbounded">
22 <xs:element maxOccurs="unbounded" minOccurs="0" name="timeGraphView" type="timeGraphView" >
23 <xs:annotation>
24 <xs:documentation>Define a new time graph view.</xs:documentation></xs:annotation></xs:element>
25 <xs:element maxOccurs="unbounded" minOccurs="0" name="xyView" type="xyView" >
26 <xs:annotation>
27 <xs:documentation>Define a new XY chart view.</xs:documentation></xs:annotation></xs:element>
28 <xs:element maxOccurs="unbounded" minOccurs="0" name="stateProvider" type="stateProvider" >
29 <xs:annotation>
30 <xs:documentation>Define a new state provider</xs:documentation></xs:annotation></xs:element>
31 </xs:choice>
32 </xs:complexType>
33 </xs:element>
34
35 </xs:schema>
This page took 0.031097 seconds and 5 git commands to generate.