This extension point allows to add a Quick Assist processor to offer new Quick Assists in the Java editor. This extension point supports the <code>enablement</code> tag. Properties to test on are: <dl> <li>compilationUnit: type ICompilationUnit; the compilation unit the quick assist is applied on</li> <li>projectNatures: type Collection; all project natures of the current project</li> <li>sourceLevel: type String; the source compliance of the current project</li> </dl> a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance Unique identifier for the Quick Assist processor Localized name of the Quick Assist processor. the name of the class that implements this Quick Assist processor. The class must be public and implement <samp>descent.ui.text.java.IQuickAssistProcessor</samp> with a public 0-argument constructor. Optional attribute to specify the minimal source compliance this processor requires. The following is an example of a Quick Assist processor contribution: <p> <pre> <extension point="descent.ui.quickAssistProcessors"> <quickAssistProcessor id="AdvancedQuickAssistProcessor" name="Advanced Quick Assist Processor" requiredSourceLevel="1.5" class="com.example.AdvancedQuickAssistProcessor"> </quickAssistProcessor> <enablement> <with variable="projectNatures"> <iterate operator="or"> <equals value="descent.core.dnature"/> </iterate> </with> </enablement> </extension> </pre> </p> 3.0 The contributed class must implement <code>descent.ui.text.java.IQuickAssistProcessor</code> Copyright (c) 2001, 2004 IBM Corporation and others.<br> 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 <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>