File: plugin.xml

package info (click to toggle)
eclipse-platform-ui 4.30-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 93,944 kB
  • sloc: java: 830,957; xml: 25,107; makefile: 7
file content (31 lines) | stat: -rw-r--r-- 900 bytes parent folder | download | duplicates (4)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

     <extension
         point="org.eclipse.ui.views" id="testDynamicViewAddition">
      <view
            class="org.eclipse.ui.dynamic.DynamicView"
            icon="anything.gif"
            category="org.eclipse.newView1.newCategory1"
            name="NewView1"
            id="org.eclipse.newView1.newView1">
     </view>
      <category
            name="NewCategory1"
            id="org.eclipse.newView1.newCategory1"/>
      <stickyView
            closeable="false"
            moveable="false"
            location="BOTTOM"
            id="org.eclipse.newView1.newView1"/>
            
            
     <view
            class="org.eclipse.ui.dynamic.DynamicView"
            icon="anything.gif"
            name="NewView2"
            id="org.eclipse.newView1.newView2">
     </view>
   </extension>
</plugin>