<!ELEMENT extension (bindingTagger+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT bindingTagger EMPTY>
<!ATTLIST bindingTagger
class CDATA #REQUIRED
local-id CDATA #REQUIRED>
<extension point="org.eclipse.cdt.core.tagger" id="example" name="Example Tagger Extension"> <bindingTagger local-id="my-tagger" class="com.example.internal.ExampleTagger"> <enablement> <with variable="projectNatures"> <iterate operator="or"> <equals value="com.example.my-nature"/> </iterate> </with> </enablement> </bindingTagger> </extension>
org.eclipse.cdt.core.dom.ast.tag.IBindingTagger
Copyright (c) 2013 QNX Software Systems and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html