Label Service
Identifier:
org.eclipse.wst.rdb.core.ui.labelService
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 extension point will provide plugins a way to supply their own Icons as well as a displayType for SQLObject element.
Configuration Markup:
<!ELEMENT extension (contributor)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
This extension point will provide plugins a way to supply their own Icons as well as a displayType for SQLObject element.
- 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 contributor EMPTY>
<!ATTLIST contributor
type CDATA #REQUIRED
iconLocation CDATA #REQUIRED
displayType CDATA #IMPLIED
selector CDATA #IMPLIED>
- type - The EMF type contributed by your provider of the LabelService
- iconLocation - This is the Icon location so that the core.ui plugin can load your icon
- displayType - This is the type to display in UI such as the property browser. By default the type to display will be the metaclass name eClass().getName()
- selector - The name of a class that implements the org.eclipse.wst.rdb.core.internal.ui.LabelSelector interface. If provided, this class will be used in
addition to the type to determine if the label information should be passed back for the given object.
Examples:
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