Last change
on this file since 74 was
74,
checked in by phdmakk, 10 years ago
|
+ initial RCP example
+ EBNFEditedResourceProvider
+ Initial imports and declarations in View
+ corresponding dependencies
|
-
Property svn:mime-type set to
text/plain
|
File size:
1.6 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 | |
---|
57 | </plugin> |
---|
Note: See
TracBrowser
for help on using the repository browser.