1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?> 2d435a3beSAndrew Rist<!--*********************************************************** 3*7729b32aSmseidel * 4d435a3beSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 5d435a3beSAndrew Rist * or more contributor license agreements. See the NOTICE file 6d435a3beSAndrew Rist * distributed with this work for additional information 7d435a3beSAndrew Rist * regarding copyright ownership. The ASF licenses this file 8d435a3beSAndrew Rist * to you under the Apache License, Version 2.0 (the 9d435a3beSAndrew Rist * "License"); you may not use this file except in compliance 10d435a3beSAndrew Rist * with the License. You may obtain a copy of the License at 11*7729b32aSmseidel * 12d435a3beSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 13*7729b32aSmseidel * 14d435a3beSAndrew Rist * Unless required by applicable law or agreed to in writing, 15d435a3beSAndrew Rist * software distributed under the License is distributed on an 16d435a3beSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17d435a3beSAndrew Rist * KIND, either express or implied. See the License for the 18d435a3beSAndrew Rist * specific language governing permissions and limitations 19d435a3beSAndrew Rist * under the License. 20*7729b32aSmseidel * 21d435a3beSAndrew Rist ***********************************************************--> 22d435a3beSAndrew Rist 23d435a3beSAndrew Rist 24cdf0e10cSrcweir<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd"> 25cdf0e10cSrcweir<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="Hierarchy" oor:package="org.openoffice.ucb" xml:lang="en-US"> <info> 26cdf0e10cSrcweir <author>ABI</author> 27cdf0e10cSrcweir <desc >Contains components and templates used by UCB's Hierarchy Content Provider (HCP). </desc> 28cdf0e10cSrcweir </info> 29cdf0e10cSrcweir <templates> 30cdf0e10cSrcweir <group oor:name="Entry"> 31cdf0e10cSrcweir <info> 32cdf0e10cSrcweir <desc>Specifies an entry of the hierarchy. There are two types of entries: folders and links. Folders are containers for other hierarchy elements. Links are pointers to any other resource. </desc> 33cdf0e10cSrcweir </info> 34cdf0e10cSrcweir <prop oor:name="Title" oor:type="xs:string"> 35cdf0e10cSrcweir <info> 36cdf0e10cSrcweir <desc>Specifies the title of an entry of the hierarchy.</desc> 37cdf0e10cSrcweir </info> 38cdf0e10cSrcweir </prop> 39cdf0e10cSrcweir <prop oor:name="TargetURL" oor:type="xs:string"> 40cdf0e10cSrcweir <info> 41cdf0e10cSrcweir <desc>Specifies the target URL of the entry of the hierarchy.</desc> 42cdf0e10cSrcweir </info> 43cdf0e10cSrcweir </prop> 44cdf0e10cSrcweir <prop oor:name="Type" oor:type="xs:int"> 45cdf0e10cSrcweir <info> 46cdf0e10cSrcweir <desc>Specifies the type of the hierarchy entry. Currently supported: Link (0) and Folder (1).</desc> 47cdf0e10cSrcweir </info> 48cdf0e10cSrcweir </prop> 49cdf0e10cSrcweir <set oor:name="Children" oor:node-type="Entry"> 50cdf0e10cSrcweir <info> 51cdf0e10cSrcweir <desc>Specifies the children (other hierarchy entries) of the item.</desc> 52cdf0e10cSrcweir </info> 53cdf0e10cSrcweir </set> 54cdf0e10cSrcweir </group> 55cdf0e10cSrcweir </templates> 56cdf0e10cSrcweir <component> 57cdf0e10cSrcweir <set oor:name="Root" oor:node-type="Entry"> 58cdf0e10cSrcweir <info> 59cdf0e10cSrcweir <desc>Contains a set of top-level entries of the hierarchy.</desc> 60cdf0e10cSrcweir </info> 61cdf0e10cSrcweir </set> 62cdf0e10cSrcweir </component> 63cdf0e10cSrcweir</oor:component-schema> 64