Content Viewers
Identifier:
org.eclipse.wst.internet.monitor.ui.viewers
Since:
1.0
Description:
This extension point is used to provide a viewer for a specific type of content. (e.g. a viewer for a particular image format)
Configuration Markup:
<!ELEMENT extension (viewer*)>
<!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 viewer EMPTY>
<!ATTLIST viewer
id CDATA #REQUIRED
class CDATA #REQUIRED
label CDATA #REQUIRED
type CDATA #REQUIRED>
- id - specifies a unique identifier for this extension point
- class - specifies the fully qualified name of the Java class that extends org.eclipse.wst.internet.monitor.ui.internal.provisional.ContentViewer. Viewers instances of this type will delegate to instances of this class.
- label - a translatable name used to identify the content viewer
- type - [issue: what is this used for?]
Examples:
The following is an example of a content viewer extension point:
<extension
point=
"org.eclipse.wst.internet.monitor.ui.viewers"
>
<viewer
id=
"com.example.byteviewer"
class=
"com.example.ByteContentViewer"
type=
"requestresponse"
label=
"%byteView"
/>
</extension>
API Information:
Value of the attribute class must be a fully qualified name of a Java class that extends the abstract class org.eclipse.wst.internet.monitor.ui.internal.provisional.ContentViewer
.
Copyright (c) 2003, 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