root / tmp / org.txm.groovy.rcp / plugin.xml @ 1220
Historique | Voir | Annoter | Télécharger (1,55 ko)
| 1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|---|---|
| 2 |
<?eclipse version="3.4"?>
|
| 3 |
<plugin>
|
| 4 |
|
| 5 |
<extension
|
| 6 |
point="org.eclipse.ui.views"> |
| 7 |
<category
|
| 8 |
name="%category.name" |
| 9 |
id="org.txm.groovy.rcp"> |
| 10 |
</category>
|
| 11 |
<view
|
| 12 |
name="%view.name" |
| 13 |
icon="icons/sample.gif" |
| 14 |
category="org.txm.groovy.rcp" |
| 15 |
class="org.txm.groovy.rcp.views.SampleView" |
| 16 |
id="org.txm.groovy.rcp.views.SampleView"> |
| 17 |
</view>
|
| 18 |
</extension>
|
| 19 |
<extension point="org.eclipse.ui.activities"> |
| 20 |
<activity
|
| 21 |
description="%activity.description" |
| 22 |
id="myActivity" |
| 23 |
name="%activity.name"> |
| 24 |
<enabledWhen>
|
| 25 |
<with variable="activePartId"> |
| 26 |
<equals value="nonExistentPartId"></equals> |
| 27 |
</with>
|
| 28 |
</enabledWhen>
|
| 29 |
</activity>
|
| 30 |
<activityPatternBinding
|
| 31 |
activityId="myActivity" |
| 32 |
isEqualityPattern="true" |
| 33 |
pattern="opengroovyprojectwizard"> |
| 34 |
</activityPatternBinding>
|
| 35 |
</extension>
|
| 36 |
<extension
|
| 37 |
point="org.eclipse.ui.perspectiveExtensions"> |
| 38 |
<perspectiveExtension
|
| 39 |
targetID="org.eclipse.jdt.ui.JavaPerspective"> |
| 40 |
<view
|
| 41 |
ratio="0.5" |
| 42 |
relative="org.eclipse.ui.views.ProblemView" |
| 43 |
relationship="right" |
| 44 |
id="org.txm.groovy.rcp.views.SampleView"> |
| 45 |
</view>
|
| 46 |
</perspectiveExtension>
|
| 47 |
</extension>
|
| 48 |
<extension
|
| 49 |
point="org.eclipse.help.contexts"> |
| 50 |
<contexts
|
| 51 |
file="contexts.xml"> |
| 52 |
</contexts>
|
| 53 |
</extension>
|
| 54 |
|
| 55 |
</plugin>
|