org.eclipse.cdt.managedbuilder.core.buildDefinitions
extensions. Via this extension point, for example, the developer may contribute a custom JFace field-editor, which can then be referenced by its ID from an <option>
element of an org.eclipse.cdt.managedbuilder.core.buildDefinitions
extension.
<!ELEMENT extension (fieldEditor*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT fieldEditor EMPTY>
<!ATTLIST fieldEditor
id CDATA #REQUIRED
class CDATA #REQUIRED>
This element can be used to contribute a custom JFace field-editor to represent a build-option in the project Properties dialog UI. Contributing a custom field-editor through this element is not enough - the custom field-editor must also be referenced by its ID from an <option>
element of an org.eclipse.cdt.managedbuilder.core.buildDefinitions
extension.
<option>
element of an org.eclipse.cdt.managedbuilder.core.buildDefinitions
extension.FieldEditor
abstract class, and implement the ICustomBuildOptionEditor2
interface.Copyright (c) 2011 Texas Instruments Incorporated and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available on the Eclipse website.