xref: /aoo41x/main/jvmfwk/source/javasettings.xsd (revision cdf0e10c)
1*cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
2*cdf0e10cSrcweir
3*cdf0e10cSrcweir<!--
4*cdf0e10cSrcweir    Document   : javasettings.xsd
5*cdf0e10cSrcweir    Created on : 25. März 2004, 16:16
6*cdf0e10cSrcweir    Author     : jl97489
7*cdf0e10cSrcweir    Description:
8*cdf0e10cSrcweir        Purpose of XML Schema document follows.
9*cdf0e10cSrcweir-->
10*cdf0e10cSrcweir
11*cdf0e10cSrcweir<schema targetNamespace="http://openoffice.org/2004/java/framework/1.0"
12*cdf0e10cSrcweir        xmlns:jf="http://openoffice.org/2004/java/framework/1.0"
13*cdf0e10cSrcweir        xmlns="http://www.w3.org/2001/XMLSchema"
14*cdf0e10cSrcweir        elementFormDefault="qualified">
15*cdf0e10cSrcweir
16*cdf0e10cSrcweir<element name="java">
17*cdf0e10cSrcweir <complexType>
18*cdf0e10cSrcweir  <sequence>
19*cdf0e10cSrcweir   <element name="enabled" nillable="true" default="true" type="boolean"/>
20*cdf0e10cSrcweir   <element name="userClassPath" nillable="true" type="string"/>
21*cdf0e10cSrcweir   <element name="vmParameters" nillable="true" type="jf:vmParametersType"/>
22*cdf0e10cSrcweir   <element name="jreLocations" nillable="true" type="jf:jreLocationsType"/>
23*cdf0e10cSrcweir   <element name="javaInfo" nillable="true" type="jf:javaInfoType"/>
24*cdf0e10cSrcweir  </sequence>
25*cdf0e10cSrcweir </complexType>
26*cdf0e10cSrcweir
27*cdf0e10cSrcweir</element>
28*cdf0e10cSrcweir
29*cdf0e10cSrcweir<complexType name="javaInfoType">
30*cdf0e10cSrcweir <sequence>
31*cdf0e10cSrcweir  <element name="vendor" type="string"/>
32*cdf0e10cSrcweir  <element name="location" type="string"/>
33*cdf0e10cSrcweir  <element name="version" type="string"/>
34*cdf0e10cSrcweir  <element name="features" default="0" type="unsignedLong"/>
35*cdf0e10cSrcweir  <element name="requirements" default="0" type="unsignedLong"/>
36*cdf0e10cSrcweir  <element name="vendorData" type="base64Binary"/>
37*cdf0e10cSrcweir </sequence>
38*cdf0e10cSrcweir <attribute name="vendorUpdate" type="date"/>
39*cdf0e10cSrcweir</complexType>
40*cdf0e10cSrcweir
41*cdf0e10cSrcweir
42*cdf0e10cSrcweir<complexType name="vmParametersType">
43*cdf0e10cSrcweir <sequence>
44*cdf0e10cSrcweir  <element name="param" minOccurs="0" maxOccurs="unbounded" type="string"/>
45*cdf0e10cSrcweir </sequence>
46*cdf0e10cSrcweir</complexType>
47*cdf0e10cSrcweir
48*cdf0e10cSrcweir<complexType name="jreLocationsType">
49*cdf0e10cSrcweir <sequence>
50*cdf0e10cSrcweir  <element name="location" minOccurs="0" maxOccurs="unbounded" type="string"/>
51*cdf0e10cSrcweir </sequence>
52*cdf0e10cSrcweir</complexType>
53*cdf0e10cSrcweir
54*cdf0e10cSrcweir</schema>
55