source: trunk/de.ugoe.cs.swe.exercises/plugin.xml @ 26

Last change on this file since 26 was 26, checked in by zeiss, 15 years ago
  • Property svn:mime-type set to text/plain
File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.4"?>
3<plugin>
4
5   <extension
6         id="de.ugoe.cs.swe.exercises.application"
7         name="Exercises"
8         point="org.eclipse.core.runtime.applications">
9      <application>
10         <run
11               class="de.ugoe.cs.swe.exercises.Application">
12         </run>
13      </application>
14   </extension>
15   <extension
16         point="org.eclipse.ui.perspectives">
17      <perspective
18            name="Exercise"
19            class="de.ugoe.cs.swe.exercises.Perspective"
20            id="de.ugoe.cs.swe.exercises.perspective">
21      </perspective>
22   </extension>
23   <extension
24         point="org.eclipse.ui.views">
25      <view
26            category="de.ugoe.cs.swe.exercises.category"
27            class="de.ugoe.cs.swe.exercises.lecturer.ViewLecturer"
28            icon="icons/user-online16.png"
29            id="de.ugoe.cs.swe.exercises.views.lecturer"
30            name="Lecturer"
31            restorable="true">
32      </view>
33      <view
34            category="de.ugoe.cs.swe.exercises.category"
35            class="de.ugoe.cs.swe.exercises.exercise.ViewExercise"
36            icon="icons/edit-copy16.png"
37            id="de.ugoe.cs.swe.exercises.views.exercise"
38            name="Exercises"
39            restorable="true">
40      </view>
41      <view
42            category="de.ugoe.cs.swe.exercises.category"
43            class="de.ugoe.cs.swe.exercises.lecture.GUITreeView"
44            icon="icons/x-office-address-book16.png"
45            id="de.ugoe.cs.swe.exercises.views.tree"
46            name="Lectures"
47            restorable="true">
48      </view>
49      <category
50            id="de.ugoe.cs.swe.exercises.category"
51            name="Exercises">
52      </category>
53   </extension>
54   <extension
55         point="org.eclipse.ui.perspectiveExtensions">
56      <perspectiveExtension
57            targetID="*">
58         <view
59               closeable="false"
60               id="de.ugoe.cs.swe.exercises.views.lecturer"
61               minimized="false"
62               moveable="false"
63               ratio="0.95f"
64               relationship="fast"
65               showTitle="true"
66               standalone="false"
67               visible="true">
68         </view>
69         <view
70               closeable="false"
71               id="de.ugoe.cs.swe.exercises.views.exercise"
72               minimized="false"
73               moveable="false"
74               ratio="0.95f"
75               relationship="fast"
76               showTitle="true"
77               standalone="false"
78               visible="true">
79         </view>
80         <view
81               closeable="false"
82               id="de.ugoe.cs.swe.exercises.views.tree"
83               minimized="false"
84               moveable="false"
85               ratio="0.95f"
86               relationship="fast"
87               showTitle="true"
88               standalone="false"
89               visible="true">
90         </view>
91      </perspectiveExtension>
92   </extension>
93   <extension
94         point="org.eclipse.ui.commands">
95      <command
96            defaultHandler="de.ugoe.cs.swe.exercises.settings.SettingsHandler"
97            id="de.ugoe.cs.swe.exercises.commands.settings"
98            name="Settings">
99      </command>
100   </extension>
101   <extension
102         point="org.eclipse.ui.menus">
103      <menuContribution
104            locationURI="menu:org.eclipse.ui.main.menu">
105         <menu
106               label="Options">
107            <command
108                  commandId="de.ugoe.cs.swe.exercises.commands.settings"
109                  icon="icons/system-run16.png"
110                  label="Settings"
111                  style="push">
112            </command>
113         </menu>
114      </menuContribution>
115   </extension>
116</plugin>
Note: See TracBrowser for help on using the repository browser.