Content Viewers

org.eclipse.wst.internet.monitor.ui.viewers

1.0

This extension point is used to provide a viewer for a specific type of content. (e.g. a viewer for a particular image format)

<!ELEMENT extension (viewer+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT viewer EMPTY>

<!ATTLIST viewer

id    CDATA #REQUIRED

class CDATA #REQUIRED

label CDATA #REQUIRED

type  CDATA #REQUIRED>


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>

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.