Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1b67021c52f01d8f9278d5d5152cf3593e3bfbd8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         id="product"
         point="org.eclipse.core.runtime.products">
      <product
            application="org.eclipse.e4.ui.workbench.swt.E4Application"
            name="ModelEditor">
         <property
               name="appName"
               value="ModelEditor">
         </property>
         <property
               name="applicationXMI"
               value="org.eclipse.e4.tools.emf.editor/Application.e4xmi">
         </property>
         <property
               name="applicationCSS"
               value="org.eclipse.e4.tools.emf.editor.theme">
         </property>
         <property
               name="applicationCSSResources"
               value="platform:/plugin/org.eclipse.e4.tools.emf.editor/images/">
         </property>
      </product>
   </extension>
   <extension
         point="org.eclipse.e4.ui.css.swt.theme">
      <theme
            basestylesheeturi="css/e4_default.css"
            id="org.eclipse.e4.tools.emf.editor.theme"
            label="Application Theme">
      </theme>
   </extension>

</plugin>

Back to the top