mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Fix for 108173, basically removes warnings in plugin.xml
This commit is contained in:
parent
b130569488
commit
19ec4b5024
3 changed files with 20 additions and 34 deletions
|
@ -16,10 +16,20 @@ ccnature.name=C++ Nature
|
||||||
CProblemMarker.name=C/C++ Problem
|
CProblemMarker.name=C/C++ Problem
|
||||||
PathEntryProblemMarker.name=Path Entry Problem
|
PathEntryProblemMarker.name=Path Entry Problem
|
||||||
CBuildCommand.name=C Builder Command
|
CBuildCommand.name=C Builder Command
|
||||||
CBuildConsole.name=C Builder Console
|
|
||||||
|
#names of extension points
|
||||||
CProject.name=C Project
|
CProject.name=C Project
|
||||||
|
CBuildConsole.name=C Builder Console
|
||||||
ProcessList.name=Process List
|
ProcessList.name=Process List
|
||||||
ErrorParser.name=Error Parser
|
ErrorParser.name=Error Parser
|
||||||
|
BinaryParser.name=Binary Parser
|
||||||
|
PathEntryStore.name=Path Entry Store
|
||||||
|
ScannerInfoProvider.name=Scanner Information Provider
|
||||||
|
CLanguage.name= CDT Language
|
||||||
|
CFileType.name= CDT File Type
|
||||||
|
CFileTypeAssociation.name= CDT File Type Association
|
||||||
|
CIndexer.name= C/C++ Indexer
|
||||||
|
|
||||||
CodeFormatter.name=C/C++ Code Formatter
|
CodeFormatter.name=C/C++ Code Formatter
|
||||||
|
|
||||||
CTaskName=C/C++ Task
|
CTaskName=C/C++ Task
|
||||||
|
|
|
@ -22,27 +22,27 @@
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Extension Point: IBinaryParser, use to detect wheter an IFile is a binary -->
|
<!-- Extension Point: IBinaryParser, use to detect wheter an IFile is a binary -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<extension-point id="BinaryParser" name="BinaryParser"/>
|
<extension-point id="BinaryParser" name="%BinaryParser.name"/>
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Extension Point: IPathEntryStore, use to provide a storage for PathEtnry -->
|
<!-- Extension Point: IPathEntryStore, use to provide a storage for PathEtnry -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<extension-point id="PathEntryStore" name="PathEntryStore"/>
|
<extension-point id="PathEntryStore" name="%PathEntryStore.name"/>
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Obsolete extension point, use the IPathEntry mechanism to provide include/macros -->
|
<!-- Obsolete extension point, use the IPathEntry mechanism to provide include/macros -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<extension-point id="ScannerInfoProvider" name="Scanner Information Provider"/>
|
<extension-point id="ScannerInfoProvider" name="%ScannerInfoProvider.name"/>
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Extension Point: CFileType and CFileTypeAssociation for translation unit ident -->
|
<!-- Extension Point: CFileType and CFileTypeAssociation for translation unit ident -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<extension-point id="CLanguage" name="CLanguage" schema="schema/CLanguage.exsd"/>
|
<extension-point id="CLanguage" name="%CLanguage.name" schema="schema/CLanguage.exsd"/>
|
||||||
<extension-point id="CFileType" name="CFileType" />
|
<extension-point id="CFileType" name="%CFileType.name" />
|
||||||
<extension-point id="CFileTypeAssociation" name="CFileTypeAssociation" />
|
<extension-point id="CFileTypeAssociation" name="%CFileTypeAssociation.name" />
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- PathEntryContainer initialization, this is part of the IPathEntry framework -->
|
<!-- PathEntryContainer initialization, this is part of the IPathEntry framework -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<extension-point id="PathEntryContainerInitializer" name="%PathEntryContainerInitializer" schema="schema/PathEntryContainerInitializer.exsd"/>
|
<extension-point id="PathEntryContainerInitializer" name="%PathEntryContainerInitializer" schema="schema/PathEntryContainerInitializer.exsd"/>
|
||||||
<extension-point id="CodeFormatter" name="%CodeFormatter.name" schema="schema/CodeFormatter.exsd"/>
|
<extension-point id="CodeFormatter" name="%CodeFormatter.name" schema="schema/CodeFormatter.exsd"/>
|
||||||
<extension-point id="CIndexer" name="C/C++ Indexer" schema="schema/CIndexer.exsd"/>
|
<extension-point id="CIndexer" name="%CIndexer.name" schema="schema/CIndexer.exsd"/>
|
||||||
<extension-point id="language" name="%language.name" schema="schema/language.exsd"/>
|
<extension-point id="language" name="%language.name" schema="schema/language.exsd"/>
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Define the list of the Binary Parser provided by the CDT -->
|
<!-- Define the list of the Binary Parser provided by the CDT -->
|
||||||
|
@ -511,11 +511,6 @@
|
||||||
id="nullindexer"
|
id="nullindexer"
|
||||||
name="%CDTIndexer.nullindexer"
|
name="%CDTIndexer.nullindexer"
|
||||||
point="org.eclipse.cdt.core.CIndexer">
|
point="org.eclipse.cdt.core.CIndexer">
|
||||||
<cextension>
|
|
||||||
<run
|
|
||||||
class="org.eclipse.cdt.internal.core.index.nullindexer.NullIndexer">
|
|
||||||
</run>
|
|
||||||
</cextension>
|
|
||||||
<run class="org.eclipse.cdt.internal.core.pdom.indexer.nulli.PDOMNullIndexer"/>
|
<run class="org.eclipse.cdt.internal.core.pdom.indexer.nulli.PDOMNullIndexer"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension
|
<extension
|
||||||
|
@ -523,21 +518,11 @@
|
||||||
name="%fastIndexer.name"
|
name="%fastIndexer.name"
|
||||||
point="org.eclipse.cdt.core.CIndexer">
|
point="org.eclipse.cdt.core.CIndexer">
|
||||||
<run class="org.eclipse.cdt.internal.core.pdom.indexer.fast.PDOMFastIndexer"/>
|
<run class="org.eclipse.cdt.internal.core.pdom.indexer.fast.PDOMFastIndexer"/>
|
||||||
<cextension>
|
|
||||||
<run
|
|
||||||
class="org.eclipse.cdt.internal.core.index.nullindexer.NullIndexer">
|
|
||||||
</run>
|
|
||||||
</cextension>
|
|
||||||
</extension>
|
</extension>
|
||||||
<extension
|
<extension
|
||||||
name="%CDTIndexer.domsourceindexer"
|
name="%CDTIndexer.domsourceindexer"
|
||||||
id="domsourceindexer"
|
id="domsourceindexer"
|
||||||
point="org.eclipse.cdt.core.CIndexer">
|
point="org.eclipse.cdt.core.CIndexer">
|
||||||
<cextension>
|
|
||||||
<run
|
|
||||||
class="org.eclipse.cdt.internal.core.index.domsourceindexer.DOMSourceIndexer">
|
|
||||||
</run>
|
|
||||||
</cextension>
|
|
||||||
<run class="org.eclipse.cdt.internal.core.pdom.indexer.full.PDOMFullIndexer"/>
|
<run class="org.eclipse.cdt.internal.core.pdom.indexer.full.PDOMFullIndexer"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension
|
<extension
|
||||||
|
@ -577,15 +562,6 @@
|
||||||
class="org.eclipse.cdt.internal.core.pdom.dom.cpp.PDOMCPPLinkageFactory"
|
class="org.eclipse.cdt.internal.core.pdom.dom.cpp.PDOMCPPLinkageFactory"
|
||||||
id="C++"/>
|
id="C++"/>
|
||||||
</extension>
|
</extension>
|
||||||
<extension
|
|
||||||
point="org.eclipse.core.runtime.adapters">
|
|
||||||
<factory
|
|
||||||
adaptableType="org.eclipse.cdt.core.dom.ast.IBinding"
|
|
||||||
class="org.eclipse.cdt.internal.core.pdom.dom.PDOMBindingAdapterFactory">
|
|
||||||
<adapter type="org.eclipse.cdt.internal.core.pdom.dom.PDOMBinding"/>
|
|
||||||
</factory>
|
|
||||||
</extension>
|
|
||||||
|
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
<!-- Dynamic Variables -->
|
<!-- Dynamic Variables -->
|
||||||
<!-- =================================================================================== -->
|
<!-- =================================================================================== -->
|
||||||
|
|
|
@ -22,14 +22,14 @@
|
||||||
</documentation>
|
</documentation>
|
||||||
</annotation>
|
</annotation>
|
||||||
</attribute>
|
</attribute>
|
||||||
<attribute name="id" type="string">
|
<attribute name="id" type="string" use="required">
|
||||||
<annotation>
|
<annotation>
|
||||||
<documentation>
|
<documentation>
|
||||||
|
|
||||||
</documentation>
|
</documentation>
|
||||||
</annotation>
|
</annotation>
|
||||||
</attribute>
|
</attribute>
|
||||||
<attribute name="name" type="string">
|
<attribute name="name" type="string" use="required">
|
||||||
<annotation>
|
<annotation>
|
||||||
<documentation>
|
<documentation>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue