1<?xml version="1.0" encoding="UTF-8"?> 2<!--*********************************************************** 3 * 4 * Licensed to the Apache Software Foundation (ASF) under one 5 * or more contributor license agreements. See the NOTICE file 6 * distributed with this work for additional information 7 * regarding copyright ownership. The ASF licenses this file 8 * to you under the Apache License, Version 2.0 (the 9 * "License"); you may not use this file except in compliance 10 * with the License. You may obtain a copy of the License at 11 * 12 * http://www.apache.org/licenses/LICENSE-2.0 13 * 14 * Unless required by applicable law or agreed to in writing, 15 * software distributed under the License is distributed on an 16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 * KIND, either express or implied. See the License for the 18 * specific language governing permissions and limitations 19 * under the License. 20 * 21 ***********************************************************--> 22 23 24 25<?eclipse version="3.4"?> 26<plugin> 27 28 <extension 29 point="org.eclipse.ui.views"> 30 <category 31 name="VCL Test Assistant" 32 id="org.openoffice.test.assistant"> 33 </category> 34 <view 35 name="VCL Explorer" 36 icon="icons/sample.gif" 37 category="org.openoffice.test.assistant" 38 class="org.openoffice.test.assistant.views.VclExplorer" 39 id="org.openoffice.test.assistant.views.VclExplorer"> 40 </view> 41 </extension> 42 <extension 43 point="org.eclipse.ui.perspectiveExtensions"> 44 <perspectiveExtension 45 targetID="org.eclipse.jdt.ui.JavaPerspective"> 46 <view 47 ratio="0.5" 48 relative="org.eclipse.ui.views.TaskList" 49 relationship="right" 50 id="org.openoffice.test.assistant.views.VclExplorer"> 51 </view> 52 </perspectiveExtension> 53 </extension> 54 <extension 55 point="org.eclipse.help.contexts"> 56 <contexts 57 file="contexts.xml"> 58 </contexts> 59 </extension> 60 <extension 61 point="org.eclipse.ui.preferencePages"> 62 <page 63 class="org.openoffice.test.assistant.preferences.PreferencePage" 64 id="org.openoffice.test.assistant.preferences.PreferencePage" 65 name="VCL Test Assistant"> 66 </page> 67 </extension> 68 <extension 69 point="org.eclipse.core.runtime.preferences"> 70 <initializer 71 class="org.openoffice.test.assistant.preferences.PreferenceInitializer"> 72 </initializer> 73 </extension> 74 75</plugin> 76