File: plugin.xml

package info (click to toggle)
eclipse-platform 4.29-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 70,168 kB
  • sloc: java: 524,463; xml: 64,602; javascript: 4,902; jsp: 4,210; ansic: 870; makefile: 38
file content (19 lines) | stat: -rw-r--r-- 716 bytes parent folder | download | duplicates (9)
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.0"?>
<plugin>
   <extension-point id="filesystems" name="%fileSystemsName" schema="schema/filesystems.exsd"/>
   <extension
         id="org.eclipse.core.filesystem.local"
         point="org.eclipse.core.filesystem.filesystems">
      <filesystem scheme="file">
         <run class="org.eclipse.core.internal.filesystem.local.LocalFileSystem"/>
      </filesystem>
   </extension>
   <extension
         id="org.eclipse.core.filesystem.null"
         point="org.eclipse.core.filesystem.filesystems">
      <filesystem scheme="null">
         <run class="org.eclipse.core.internal.filesystem.NullFileSystem"/>
      </filesystem>
   </extension>
</plugin>