This extension point allows extensions to contribute to the information that is written to the .pdom file. After the AST has been parsed, all contributors are provided a chance to process the AST's translation units while the .pdom is being updated. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance 8.3 The following is an example of a Tagger contribution: <p> <pre> <extension point="org.eclipse.cdt.core.PDOMASTProcessor" id="example" name="Example PDOM AST Processor"> <bindingTagger local-id="my-processor" class="com.example.internal.ExamplePDOMASTProcessor"> <enablement> <with variable="projectNatures"> <iterate operator="or"> <equals value="com.example.my-nature"/> </iterate> </with> </enablement> </bindingTagger> </extension> </pre> </p> The contributed class must implement <code>org.eclipse.cdt.core.index.IPDOMASTProcessor</code> interface. 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