2002-06-26 20:39:58 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2003-11-24 18:31:03 +00:00
|
|
|
<?eclipse version="3.0"?>
|
2002-06-26 20:39:58 +00:00
|
|
|
<plugin
|
|
|
|
id="org.eclipse.cdt.core"
|
|
|
|
name="%pluginName"
|
2004-07-15 15:54:47 +00:00
|
|
|
version="2.1.0"
|
2002-07-16 01:52:35 +00:00
|
|
|
provider-name="%providerName"
|
2002-07-26 19:15:14 +00:00
|
|
|
class="org.eclipse.cdt.core.CCorePlugin">
|
2002-06-26 20:39:58 +00:00
|
|
|
|
|
|
|
<runtime>
|
2002-07-04 16:31:05 +00:00
|
|
|
<library name="cdtcore.jar">
|
|
|
|
<export name="*"/>
|
|
|
|
</library>
|
2003-11-05 19:22:44 +00:00
|
|
|
<library name="cdtparser.jar">
|
|
|
|
<export name="*"/>
|
|
|
|
</library>
|
2002-06-26 20:39:58 +00:00
|
|
|
</runtime>
|
|
|
|
<requires>
|
|
|
|
<import plugin="org.eclipse.core.resources"/>
|
2003-09-12 18:19:05 +00:00
|
|
|
<import plugin="org.eclipse.team.core"/>
|
2004-05-18 15:35:57 +00:00
|
|
|
<import plugin="org.eclipse.core.runtime"/>
|
2002-06-26 20:39:58 +00:00
|
|
|
</requires>
|
|
|
|
|
|
|
|
|
2004-03-25 19:53:34 +00:00
|
|
|
<extension-point id="CProject" name="%CProject.name" schema="schema/CProject.exsd"/>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Extension Point:(work in progress) IConsole, customize a C Build console output -->
|
|
|
|
<!-- =================================================================================== -->
|
2004-03-25 19:53:34 +00:00
|
|
|
<extension-point id="CBuildConsole" name="%CBuildConsole.name" schema="schema/CBuildConsole.exsd"/>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Extension Point: IProcessList, returns a list of running processes -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-09-17 19:08:38 +00:00
|
|
|
<extension-point id="ProcessList" name="%ProcessList.name" schema="schema/ProcessList.exsd"/>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Extension Point: IErrorParser, error parsers use when building -->
|
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<extension-point id="ErrorParser" name="%ErrorParser.name"/>
|
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Extension Point: IBinaryParser, use to detect wheter an IFile is a binary -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-11-25 05:55:56 +00:00
|
|
|
<extension-point id="BinaryParser" name="BinaryParser"/>
|
2004-04-26 04:44:29 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Extension Point: IPathEntryStore, use to provide a storage for PathEtnry -->
|
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<extension-point id="PathEntryStore" name="PathEntryStore"/>
|
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- =================================================================================== -->
|
2003-08-13 17:45:38 +00:00
|
|
|
<extension-point id="ScannerInfoProvider" name="Scanner Information Provider"/>
|
2004-04-06 23:41:08 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Extension Point: CFileType and CFileTypeAssociation for translation unit ident -->
|
|
|
|
<!-- =================================================================================== -->
|
2004-04-16 19:08:23 +00:00
|
|
|
<extension-point id="CLanguage" name="CLanguage" schema="schema/CLanguage.exsd"/>
|
2004-04-06 23:41:08 +00:00
|
|
|
<extension-point id="CFileType" name="CFileType" schema="schema/CFileType.exsd"/>
|
|
|
|
<extension-point id="CFileTypeAssociation" name="CFileTypeAssociation" schema="schema/CFileTypeAssociation.exsd"/>
|
2004-04-19 15:51:31 +00:00
|
|
|
<extension-point id="PathEntryContainerInitializer" name="%PathEntryContainerInitializer" schema="schema/PathEntryContainerInitializer.exsd"/>
|
2003-02-17 19:13:07 +00:00
|
|
|
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Define the list of the Binary Parser provided by the CDT -->
|
|
|
|
<!-- =================================================================================== -->
|
2003-04-07 02:47:01 +00:00
|
|
|
<extension
|
|
|
|
id="ELF"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%ElfParser.name"
|
2003-04-07 02:47:01 +00:00
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<run
|
2004-02-27 21:27:39 +00:00
|
|
|
class="org.eclipse.cdt.utils.elf.parser.ElfParser">
|
2003-04-07 02:47:01 +00:00
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2003-10-06 20:16:38 +00:00
|
|
|
<extension
|
2003-09-17 02:11:24 +00:00
|
|
|
id="GNU_ELF"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%GNUElfParser.name"
|
2003-09-17 02:11:24 +00:00
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.utils.elf.parser.GNUElfParser">
|
|
|
|
</run>
|
|
|
|
</cextension>
|
2003-10-06 20:16:38 +00:00
|
|
|
</extension>
|
2003-04-07 02:47:01 +00:00
|
|
|
<extension
|
|
|
|
id="PE"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%PEWindowsParser.name"
|
2003-04-07 02:47:01 +00:00
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<run
|
2004-02-27 21:27:39 +00:00
|
|
|
class="org.eclipse.cdt.utils.coff.parser.PEParser">
|
2003-04-07 02:47:01 +00:00
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2003-10-19 01:16:41 +00:00
|
|
|
<extension
|
|
|
|
id="Cygwin_PE"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%CygwinPEParser.name"
|
2003-10-19 01:16:41 +00:00
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.utils.coff.parser.CygwinPEParser">
|
2004-04-26 04:44:29 +00:00
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2004-06-21 22:08:09 +00:00
|
|
|
<extension
|
|
|
|
id="XCOFF32"
|
|
|
|
name="%XCOFF32Parser.name"
|
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.utils.xcoff.parser.XCOFF32Parser">
|
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2004-07-16 18:03:28 +00:00
|
|
|
<extension
|
|
|
|
id="SOM"
|
|
|
|
name="%SOMParser.name"
|
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.utils.som.parser.SOMParser">
|
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2004-06-01 19:33:10 +00:00
|
|
|
<!-- This is for backward compatibility: an Typo was introduce in on of the realease
|
|
|
|
and "ELF" instead of "Elf" -->
|
|
|
|
<extension
|
2004-06-01 19:37:47 +00:00
|
|
|
id="Elf"
|
2004-06-01 19:33:10 +00:00
|
|
|
name="%ElfParser.name"
|
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<filter
|
|
|
|
name = "visibility"
|
|
|
|
value = "private">
|
|
|
|
</filter>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.utils.elf.parser.ElfParser">
|
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2004-07-07 19:19:42 +00:00
|
|
|
<extension
|
|
|
|
id="MachO"
|
|
|
|
name="%MachOParser.name"
|
|
|
|
point="org.eclipse.cdt.core.BinaryParser">
|
|
|
|
<cextension>
|
|
|
|
<filter
|
|
|
|
name = "visibility"
|
|
|
|
value = "private">
|
|
|
|
</filter>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.utils.macho.parser.MachOParser">
|
|
|
|
</run>
|
|
|
|
</cextension>
|
|
|
|
</extension>
|
2004-04-26 04:44:29 +00:00
|
|
|
<!-- =================================================================================== -->
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- Define the list of Error Parser provided by the CDT -->
|
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<extension
|
|
|
|
id="GCCErrorParser"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%CDTGNUCErrorParser.name"
|
2003-08-31 04:42:14 +00:00
|
|
|
point="org.eclipse.cdt.core.ErrorParser">
|
|
|
|
<errorparser
|
|
|
|
class="org.eclipse.cdt.internal.errorparsers.GCCErrorParser">
|
|
|
|
</errorparser>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
id="GASErrorParser"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%CDTGNUAssemblerErrorParser.name"
|
2003-08-31 04:42:14 +00:00
|
|
|
point="org.eclipse.cdt.core.ErrorParser">
|
|
|
|
<errorparser
|
|
|
|
class="org.eclipse.cdt.internal.errorparsers.GASErrorParser">
|
|
|
|
</errorparser>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
id="GLDErrorParser"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%CDTGNULinkerErrorParser.name"
|
2003-08-31 04:42:14 +00:00
|
|
|
point="org.eclipse.cdt.core.ErrorParser">
|
|
|
|
<errorparser
|
|
|
|
class="org.eclipse.cdt.internal.errorparsers.GLDErrorParser">
|
|
|
|
</errorparser>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
id="MakeErrorParser"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%CDTGNUMakeErrorParser.name"
|
2003-08-31 04:42:14 +00:00
|
|
|
point="org.eclipse.cdt.core.ErrorParser">
|
|
|
|
<errorparser
|
|
|
|
class="org.eclipse.cdt.internal.errorparsers.MakeErrorParser">
|
|
|
|
</errorparser>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
id="VCErrorParser"
|
2004-03-23 20:46:26 +00:00
|
|
|
name="%CDTVisualCErrorParser.name"
|
2003-08-31 04:42:14 +00:00
|
|
|
point="org.eclipse.cdt.core.ErrorParser">
|
|
|
|
<errorparser
|
2003-09-01 21:49:15 +00:00
|
|
|
class="org.eclipse.cdt.internal.errorparsers.VCErrorParser">
|
2003-08-31 04:42:14 +00:00
|
|
|
</errorparser>
|
|
|
|
</extension>
|
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- CDT customized problem markers: C Problem markers -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-06-26 20:39:58 +00:00
|
|
|
<extension
|
|
|
|
id="problem"
|
|
|
|
name="%CProblemMarker.name"
|
|
|
|
point="org.eclipse.core.resources.markers">
|
|
|
|
<super
|
|
|
|
type="org.eclipse.core.resources.problemmarker">
|
|
|
|
</super>
|
|
|
|
<super
|
|
|
|
type="org.eclipse.core.resources.textmarker">
|
|
|
|
</super>
|
2004-05-20 19:52:57 +00:00
|
|
|
<persistent
|
|
|
|
value="true">
|
|
|
|
</persistent>
|
2002-06-26 20:39:58 +00:00
|
|
|
</extension>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- CDT C Nature -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-06-26 20:39:58 +00:00
|
|
|
<extension
|
|
|
|
id="cnature"
|
|
|
|
name="%cnature.name"
|
|
|
|
point="org.eclipse.core.resources.natures">
|
|
|
|
<runtime>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.core.CProjectNature">
|
|
|
|
</run>
|
|
|
|
</runtime>
|
|
|
|
</extension>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- CDT C++ Nature -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-06-26 20:39:58 +00:00
|
|
|
<extension
|
|
|
|
id="ccnature"
|
|
|
|
name="%cnature.name"
|
|
|
|
point="org.eclipse.core.resources.natures">
|
|
|
|
<runtime>
|
|
|
|
<run
|
|
|
|
class="org.eclipse.cdt.core.CCProjectNature">
|
|
|
|
</run>
|
|
|
|
</runtime>
|
|
|
|
</extension>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
2004-04-06 23:41:08 +00:00
|
|
|
<!-- CDT file type mappings -->
|
|
|
|
<!-- =================================================================================== -->
|
2004-04-16 19:08:23 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.cdt.core.CLanguage">
|
|
|
|
<language
|
|
|
|
name="C"
|
|
|
|
id="org.eclipse.cdt.core.language.c">
|
|
|
|
</language>
|
|
|
|
<language
|
|
|
|
name="C++"
|
|
|
|
id="org.eclipse.cdt.core.language.cxx">
|
|
|
|
</language>
|
|
|
|
<language
|
|
|
|
name="Assembly"
|
|
|
|
id="org.eclipse.cdt.core.language.asm">
|
|
|
|
</language>
|
|
|
|
</extension>
|
2004-04-06 23:41:08 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.cdt.core.CFileType">
|
|
|
|
<fileType
|
2004-06-09 12:37:56 +00:00
|
|
|
name="%fileTypeMapping.cSourceFile"
|
2004-04-06 23:41:08 +00:00
|
|
|
type="source"
|
2004-04-19 15:51:31 +00:00
|
|
|
id="org.eclipse.cdt.core.fileType.c_source"
|
|
|
|
language="org.eclipse.cdt.core.language.c">
|
2004-04-06 23:41:08 +00:00
|
|
|
</fileType>
|
|
|
|
<fileType
|
2004-06-09 12:37:56 +00:00
|
|
|
name="%fileTypeMapping.cHeaderFile"
|
2004-04-06 23:41:08 +00:00
|
|
|
type="header"
|
2004-04-19 15:51:31 +00:00
|
|
|
id="org.eclipse.cdt.core.fileType.c_header"
|
|
|
|
language="org.eclipse.cdt.core.language.c">
|
2004-04-06 23:41:08 +00:00
|
|
|
</fileType>
|
|
|
|
<fileType
|
2004-06-09 12:37:56 +00:00
|
|
|
name="%fileTypeMapping.cppSourceFile"
|
2004-04-06 23:41:08 +00:00
|
|
|
type="source"
|
2004-04-19 15:51:31 +00:00
|
|
|
id="org.eclipse.cdt.core.fileType.cxx_source"
|
|
|
|
language="org.eclipse.cdt.core.language.cxx">
|
2004-04-06 23:41:08 +00:00
|
|
|
</fileType>
|
|
|
|
<fileType
|
2004-06-09 12:37:56 +00:00
|
|
|
name="%fileTypeMapping.cppHeaderFile"
|
2004-04-06 23:41:08 +00:00
|
|
|
type="header"
|
2004-04-19 15:51:31 +00:00
|
|
|
id="org.eclipse.cdt.core.fileType.cxx_header"
|
|
|
|
language="org.eclipse.cdt.core.language.cxx">
|
2004-04-06 23:41:08 +00:00
|
|
|
</fileType>
|
|
|
|
<fileType
|
2004-06-09 12:37:56 +00:00
|
|
|
name="%fileTypeMapping.assemblySourceFile"
|
2004-04-06 23:41:08 +00:00
|
|
|
type="source"
|
2004-04-19 15:51:31 +00:00
|
|
|
id="org.eclipse.cdt.core.fileType.asm_source"
|
|
|
|
language="org.eclipse.cdt.core.language.asm">
|
2004-04-06 23:41:08 +00:00
|
|
|
</fileType>
|
|
|
|
</extension>
|
|
|
|
<extension
|
|
|
|
point="org.eclipse.cdt.core.CFileTypeAssociation">
|
2004-04-16 19:08:23 +00:00
|
|
|
<association
|
|
|
|
type="org.eclipse.cdt.core.fileType.c_source"
|
|
|
|
pattern="*.c">
|
|
|
|
</association>
|
|
|
|
<association
|
|
|
|
type="org.eclipse.cdt.core.fileType.c_header"
|
|
|
|
pattern="*.h">
|
|
|
|
</association>
|
|
|
|
<association
|
|
|
|
type="org.eclipse.cdt.core.fileType.cxx_source"
|
|
|
|
pattern="*.cpp,*.cxx,*.cc,*.C">
|
|
|
|
</association>
|
|
|
|
<association
|
|
|
|
file="template/cpp_headers"
|
|
|
|
type="org.eclipse.cdt.core.fileType.cxx_header"
|
|
|
|
pattern="*.hpp,*.hxx,*.hh,*.H">
|
|
|
|
</association>
|
|
|
|
<association
|
|
|
|
type="org.eclipse.cdt.core.fileType.asm_source"
|
|
|
|
pattern="*.asm,*.s,*.S">
|
|
|
|
</association>
|
2004-04-06 23:41:08 +00:00
|
|
|
</extension>
|
|
|
|
<!-- =================================================================================== -->
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- Some well known C file extensions override for the team plugins -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-11-20 14:31:35 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.team.core.fileTypes">
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
|
|
|
extension="c">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
|
|
|
extension="cc">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
|
|
|
extension="cpp">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
|
|
|
extension="cxx">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
|
|
|
extension="h">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
|
|
|
extension="hh">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="binary"
|
|
|
|
extension="o">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="binary"
|
|
|
|
extension="a">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="binary"
|
|
|
|
extension="so">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="binary"
|
|
|
|
extension="dll">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="binary"
|
|
|
|
extension="exe">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="binary"
|
|
|
|
extension="com">
|
|
|
|
</fileTypes>
|
|
|
|
<fileTypes
|
|
|
|
type="text"
|
2004-03-03 15:05:34 +00:00
|
|
|
extension="cdtproject">
|
2002-11-20 14:31:35 +00:00
|
|
|
</fileTypes>
|
|
|
|
</extension>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- Some well known C file extensions override for the team plugins -->
|
|
|
|
<!-- =================================================================================== -->
|
2002-11-20 14:31:35 +00:00
|
|
|
<extension
|
|
|
|
point="org.eclipse.team.core.ignore">
|
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.o">
|
|
|
|
</ignore>
|
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.obj">
|
|
|
|
</ignore>
|
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.a">
|
|
|
|
</ignore>
|
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.so">
|
|
|
|
</ignore>
|
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.dll">
|
|
|
|
</ignore>
|
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.exe">
|
|
|
|
</ignore>
|
2004-07-07 19:19:42 +00:00
|
|
|
<ignore
|
|
|
|
enabled="true"
|
|
|
|
pattern="*.dylib">
|
|
|
|
</ignore>
|
2002-09-16 19:50:50 +00:00
|
|
|
</extension>
|
2003-08-31 04:42:14 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<!-- =================================================================================== -->
|
2003-09-22 02:38:47 +00:00
|
|
|
<extension
|
|
|
|
id="task"
|
|
|
|
name="%CTaskName"
|
|
|
|
point="org.eclipse.core.resources.markers">
|
|
|
|
<super
|
|
|
|
type="org.eclipse.core.resources.taskmarker">
|
|
|
|
</super>
|
|
|
|
<persistent
|
|
|
|
value="true">
|
|
|
|
</persistent>
|
|
|
|
</extension>
|
2004-03-31 07:57:18 +00:00
|
|
|
<extension
|
|
|
|
id="indexermarker"
|
|
|
|
name="%IndexerMarker"
|
|
|
|
point="org.eclipse.core.resources.markers">
|
|
|
|
<super
|
|
|
|
type="org.eclipse.core.resources.problemmarker">
|
|
|
|
</super>
|
|
|
|
<persistent
|
|
|
|
value="true">
|
|
|
|
</persistent>
|
|
|
|
<super
|
|
|
|
type="org.eclipse.core.resources.textmarker">
|
|
|
|
</super>
|
|
|
|
</extension>
|
2004-05-17 12:30:43 +00:00
|
|
|
<!-- =================================================================================== -->
|
2004-05-20 19:52:57 +00:00
|
|
|
<!-- Marker for problems in the PathEntries -->
|
2004-05-17 12:30:43 +00:00
|
|
|
<!-- =================================================================================== -->
|
|
|
|
<extension
|
|
|
|
id="pathentry_problem"
|
|
|
|
name="%PathEntryProblemMarker.name"
|
|
|
|
point="org.eclipse.core.resources.markers">
|
|
|
|
<super
|
|
|
|
type="org.eclipse.core.resources.problemmarker">
|
|
|
|
</super>
|
|
|
|
</extension>
|
2003-06-28 19:48:12 +00:00
|
|
|
|
2002-06-26 20:39:58 +00:00
|
|
|
</plugin>
|