fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / jvmfwk / source / javasettings.xsd
blobe0ccbd47e35ca90d72f1323bda2ce71ae9aecfa8
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 -->
20 <!--
21 Document : javasettings.xsd
22 Created on : 25. März 2004, 16:16
23 Author : jl97489
24 Description:
25 Purpose of XML Schema document follows.
26 -->
28 <schema targetNamespace="http://openoffice.org/2004/java/framework/1.0"
29 xmlns:jf="http://openoffice.org/2004/java/framework/1.0"
30 xmlns="http://www.w3.org/2001/XMLSchema"
31 elementFormDefault="qualified">
33 <element name="java">
34 <complexType>
35 <sequence>
36 <element name="enabled" nillable="true" default="true" type="boolean"/>
37 <element name="userClassPath" nillable="true" type="string"/>
38 <element name="vmParameters" nillable="true" type="jf:vmParametersType"/>
39 <element name="jreLocations" nillable="true" type="jf:jreLocationsType"/>
40 <element name="javaInfo" nillable="true" type="jf:javaInfoType"/>
41 </sequence>
42 </complexType>
44 </element>
46 <complexType name="javaInfoType">
47 <sequence>
48 <element name="vendor" type="string"/>
49 <element name="location" type="string"/>
50 <element name="version" type="string"/>
51 <element name="features" default="0" type="unsignedLong"/>
52 <element name="requirements" default="0" type="unsignedLong"/>
53 <element name="vendorData" type="base64Binary"/>
54 </sequence>
55 <attribute name="vendorUpdate" type="date"/>
56 </complexType>
58 <complexType name="vmParametersType">
59 <sequence>
60 <element name="param" minOccurs="0" maxOccurs="unbounded" type="string"/>
61 </sequence>
62 </complexType>
64 <complexType name="jreLocationsType">
65 <sequence>
66 <element name="location" minOccurs="0" maxOccurs="unbounded" type="string"/>
67 </sequence>
68 </complexType>
70 </schema>