Blind Visualizer
Identifier:
org.eclipse.actf.visualization.blind.blindVisualizer
Description:
This extension point is used to add new Blind Visualizer.
Configuration Markup:
<!ELEMENT extension (blindVisualizer)+>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
<!ELEMENT blindVisualizer EMPTY>
<!ATTLIST blindVisualizer
class CDATA #REQUIRED
>
- class - the name of a class that implements org.eclipse.actf.visualization.blind.IBlindVisualizer.
Examples:
The following is an example of an extension definition:
<extension
point="org.eclipse.actf.visualization.blind.blindVisualizer">
<blindVisualizer
class="org.eclipse.actf.visualization.blind.html.BlindVisualizerHtml"/>
</extension>
API Information:
The contributor will add new Blind Visualizer by implementing IBlindVisualizer.
Supplied Implementation:
ACTF provides a BlindVisualizerBase that can be used as a base implementation of IBlindVisualizer. Contributors need to implement visualize method to suit to their purpose.
org.eclipse.actf.visualization.blind.html and org.eclipse.actf.visualization.blind.odfbyhtml are implementations of Blind Visualizer.
Copyright (c) 2007, 2008 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