File: plugin.xml

package info (click to toggle)
eclipse-platform-ui 4.18-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 71,596 kB
  • sloc: java: 610,550; xml: 20,234; sh: 602; makefile: 7
file content (19 lines) | stat: -rw-r--r-- 728 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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
  	<extension id="org.eclipse.ui.examples.adapterservice.snippets.adapter" point="org.eclipse.core.runtime.applications"> 
		<application>
 			<run class="org.eclipse.ui.examples.adapterservice.snippets.adapter.AdapterSnippet"/> 
 	    </application> 
   </extension>
   <extension
         point="org.eclipse.core.runtime.adapters">
      <factory
            adaptableType="java.lang.Object"
            class="org.eclipse.ui.examples.adapterservice.snippets.adapter.IDAssigner">
         <adapter
               type="org.eclipse.ui.examples.adapterservice.snippets.adapter.ThingWithId">
         </adapter>
      </factory>
   </extension>
</plugin>