This extension point is used to provide a viewer for a specific type of content. (e.g. a viewer for a particular image format)
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
an optional name of the extension instance
specifies a unique identifier for this extension point
specifies the fully qualified name of the Java class that implements <samp>IContentViewer</samp>
a translatable name used to identify the content viewer
The following is an example of a content viewer extension point:
<p>
<pre>
<extension point="net.sourceforge.phpeclipse.monitor.ui.viewers">
<viewer
id="com.example.byteviewer"
class="com.example.ByteContentViewer"
type="requestresponse"
label="%byteView"/>
</extension>
</pre>
</p>
Value of the attribute <b>class</b> must be a fully qualified name of a Java class that implements the interface <b>net.sourceforge.phpdt.monitor.ui.IContentViewer</b>.
Copyright (c) 2000, 2003 IBM Corporation and others.<br>
All rights reserved. This program and the accompanying materials are made
available under the terms of the Common Public License v1.0 which accompanies
this distribution, and is available at
<a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>