Package weka.gui.visualize
Class PostscriptWriter
java.lang.Object
weka.gui.visualize.JComponentWriter
weka.gui.visualize.PostscriptWriter
This class takes any Component and outputs it to a Postscript file.
Note:
This writer does not work with Components that rely on clipping, like e.g.
scroll lists. Here the complete list is printed, instead of only in the
borders of the scroll list (may overlap other components!). This is due to
the way, clipping is handled in Postscript. There was no easy way around
this issue. :-(
- Version:
- $Revision: 8034 $
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
-
Constructor Summary
ConstructorDescriptioninitializes the objectinitializes the object with the given ComponentPostscriptWriter
(JComponent c, File f) initializes the object with the given Component and filename -
Method Summary
Modifier and TypeMethodDescriptionvoid
generates the actual outputreturns the name of the writer, to display in the FileChooser.returns the extension (incl.static void
for testing onlyMethods inherited from class weka.gui.visualize.JComponentWriter
getComponent, getCustomHeight, getCustomWidth, getFile, getScalingEnabled, getUseCustomDimensions, getXScale, getYScale, setComponent, setCustomHeight, setCustomWidth, setFile, setScale, setScalingEnabled, setUseCustomDimensions, toOutput, toOutput, toOutput
-
Constructor Details
-
PostscriptWriter
public PostscriptWriter()initializes the object -
PostscriptWriter
initializes the object with the given Component- Parameters:
c
- the component to print in the output format
-
PostscriptWriter
initializes the object with the given Component and filename- Parameters:
c
- the component to print in the output formatf
- the file to store the output in
-
-
Method Details
-
getDescription
returns the name of the writer, to display in the FileChooser. must be overridden in the derived class.- Specified by:
getDescription
in classJComponentWriter
- Returns:
- the name of the writer
-
getExtension
returns the extension (incl. ".") of the output format, to use in the FileChooser. must be overridden in the derived class.- Specified by:
getExtension
in classJComponentWriter
- Returns:
- the file extension
-
generateOutput
generates the actual output- Throws:
Exception
- if something goes wrong
-
main
for testing only- Throws:
Exception
-