Adapter Factory Extension
Identifier:
org.eclipse.wst.common.emfworkbench.integration.adapterFactory
Since:
This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
Description:
This is used to register an adapter factory with the dynamic adapter factory.
Configuration Markup:
<!ELEMENT extension (adapterFactory+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- point - a fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT adapterFactory (view*)>
<!ATTLIST adapterFactory
packageURI CDATA #REQUIRED
className CDATA #REQUIRED
id CDATA #REQUIRED
functionGroupID CDATA #IMPLIED>
Defines the Adapter Factory being added. All added Adapter Factories are queriable whenever their Function Group and optional Viewer Id are specified.
- packageURI - The package URI that you are extending (for example "ejb.xmi")
- className - The fully qualified name of the class which implements org.eclipse.emf.common.notify.AdapterFactory.
- id - The Unique identifier of the Adapter Factory extension. This will associate it with one or more function groups based on the function group patterns. Function Groups allow Content and Actions to be enabled or disabled based on project-specific information. Generally, they are used by vendors who wish to add functionality specific to their products, e.g. J2EE Application Servers.
- functionGroupID -
<!ELEMENT view EMPTY>
<!ATTLIST view
id CDATA #REQUIRED>
- id - An optional viewer Id which will limit the invocation of the defined Adapter Factory to the given viewer id.
Copyright (c) 2005 IBM Corporation 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