source: default/v2/trunk/de.ugoe.cs.swe.bnftools.ebnf.standalone/plugin.xml @ 77

Last change on this file since 77 was 77, checked in by phdmakk, 10 years ago

+ what appears to be a working version (note that de.ugoe.cs.bnftools.ebnf is still incorrectly exported and needs to be manually fixed (open resulting jar and copy/move everything from bin into the parent location in the jar file)

  • Property svn:mime-type set to text/plain
File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.4"?>
3<plugin>
4
5   <extension
6         id="application"
7         point="org.eclipse.core.runtime.applications">
8      <application>
9         <run
10               class="de.ugoe.cs.swe.bnftools.ebnf.standalone.Application">
11         </run>
12      </application>
13   </extension>
14   <extension
15         point="org.eclipse.ui.perspectives">
16      <perspective
17            name="Perspective"
18            class="de.ugoe.cs.swe.bnftools.ebnf.standalone.Perspective"
19            id="de.ugoe.cs.swe.bnftools.ebnf.standalone.perspective">
20      </perspective>
21   </extension>
22   <extension
23         point="org.eclipse.ui.views">
24      <view
25            name="View"
26            class="de.ugoe.cs.swe.bnftools.ebnf.standalone.View"
27            id="de.ugoe.cs.swe.bnftools.ebnf.standalone.view">
28      </view>
29   </extension>
30   <extension
31         point="org.eclipse.ui.perspectiveExtensions">
32      <perspectiveExtension
33            targetID="*">
34         <view
35               standalone="true"
36               minimized="false"
37               relative="org.eclipse.ui.editorss"
38               relationship="left"
39               id="de.ugoe.cs.swe.bnftools.ebnf.standalone.view">
40         </view>
41      </perspectiveExtension>
42   </extension>
43   <extension
44         point="org.eclipse.ui.menus">
45      <menuContribution
46            locationURI="menu:org.eclipse.ui.main.menu">
47         <menu
48               label="File">
49            <command
50                  commandId="org.eclipse.ui.file.exit"
51                  label="Exit">
52            </command>
53         </menu>
54      </menuContribution>
55   </extension>
56   <extension
57         id="standalone_product"
58         point="org.eclipse.core.runtime.products">
59      <product
60            application="de.ugoe.cs.swe.bnftools.ebnf.standalone.application"
61            name="BNF Standalone">
62         <property
63               name="appName"
64               value="BNF Standalone">
65         </property>
66      </product>
67   </extension>
68
69</plugin>
Note: See TracBrowser for help on using the repository browser.