Java ME application programming interface
Identifier:
org.eclipse.mtj.core.api
Since:
[Enter the first release in which this extension point appears.]
Description:
Representation of an Java ME application programming interface (API). In general, an API will be wrapped up within the definition of a JSR.
Configuration Markup:
<!ELEMENT extension (api)+>
<!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 api (skeletonFile)*>
<!ATTLIST api
id CDATA #REQUIRED
primaryClass CDATA #REQUIRED
name CDATA #IMPLIED
version CDATA #IMPLIED
type CDATA #IMPLIED>
- id - The identifier for this particular API.
- primaryClass - The name of the primary class that provides the functionality for this API. This is used primarily for matching operations.
- name - The optional user-displayable name for this API. If not specified, the required identifier will be used instead.
- version - The version of this particular API. If not specified, the version will be assumed to be "1.0".
- type - The optional type of this API. The allowable values are:
- "configuration" - A Java ME configuration.
- "profile" - A Java ME profile.
- "optional" - An optional Java ME library.
If not specified, the API will be specified as an "optional" library.
<!ELEMENT skeletonFile EMPTY>
<!ATTLIST skeletonFile
path CDATA #REQUIRED>
An file that can be used for preverification.
- path - The path to the file resource to be used for preverification
Examples:
[Enter extension point usage example here.]
Supplied Implementation:
[Enter information about supplied implementation of this extension point.]
Copyright (c) 2003,2008 Craig Setera 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
Contributors:
Craig Setera (EclipseME) - Initial implementation;
Diego Sandin (Motorola) - Refactoring extension name to follow eclipse
standards