Files
libreoffice/jvmfwk/source/javasettings.xsd

71 lines
2.4 KiB
XML
Raw Normal View History

2004-04-19 14:57:02 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
2004-04-19 14:57:02 +00:00
<!--
Document : javasettings.xsd
Created on : 25. März 2004, 16:16
Author : jl97489
Description:
Purpose of XML Schema document follows.
-->
<schema targetNamespace="http://openoffice.org/2004/java/framework/1.0"
xmlns:jf="http://openoffice.org/2004/java/framework/1.0"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<element name="java">
<complexType>
2004-04-19 14:57:02 +00:00
<sequence>
2004-04-26 11:46:47 +00:00
<element name="enabled" nillable="true" default="true" type="boolean"/>
2004-04-19 14:57:02 +00:00
<element name="userClassPath" nillable="true" type="string"/>
<element name="vmParameters" nillable="true" type="jf:vmParametersType"/>
2004-04-21 08:30:36 +00:00
<element name="jreLocations" nillable="true" type="jf:jreLocationsType"/>
2004-04-26 11:46:47 +00:00
<element name="javaInfo" nillable="true" type="jf:javaInfoType"/>
2004-04-19 14:57:02 +00:00
</sequence>
</complexType>
</element>
2004-04-19 14:57:02 +00:00
<complexType name="javaInfoType">
<sequence>
<element name="vendor" type="string"/>
<element name="location" type="string"/>
<element name="version" type="string"/>
<element name="features" default="0" type="unsignedLong"/>
<element name="requirements" default="0" type="unsignedLong"/>
<element name="vendorData" type="base64Binary"/>
</sequence>
<attribute name="vendorUpdate" type="date"/>
</complexType>
2004-04-19 14:57:02 +00:00
<complexType name="vmParametersType">
<sequence>
<element name="param" minOccurs="0" maxOccurs="unbounded" type="string"/>
</sequence>
</complexType>
2004-04-21 08:30:36 +00:00
<complexType name="jreLocationsType">
<sequence>
<element name="location" minOccurs="0" maxOccurs="unbounded" type="string"/>
</sequence>
</complexType>
2004-04-19 14:57:02 +00:00
</schema>