Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c3ed01cf4789ccb0688315c994aab7476994634a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

   <extension
         point="org.eclipse.ui.decorators">
      <decorator
            adaptable="true"
            class="org.eclipse.emf.cdo.releng.launches.LaunchConfigLabelDecorator"
            icon="icons/local_deco.gif"
            id="org.eclipse.emf.cdo.releng.LaunchConfigLabelDecorator"
            label="Unshared Launch Configs"
            lightweight="false"
            location="TOP_LEFT"
            state="true">
         <enablement>
            <objectClass
                  name="org.eclipse.debug.core.ILaunchConfiguration">
            </objectClass>
         </enablement>
      </decorator>
   </extension>

</plugin>

Back to the top