Package de.erichseifert.vectorgraphics2d
Interface Document
- All Known Implementing Classes:
EPSDocument
,PDFDocument
,SizedDocument
,SVGDocument
public interface Document
Interface for documents that are able to output binary files in the
implemented file format.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether or not theDocument
represents compressed data.void
writeTo
(OutputStream out)
-
Method Details
-
writeTo
- Throws:
IOException
-
isCompressed
boolean isCompressed()Returns whether or not theDocument
represents compressed data.- Returns:
true
if the contents are compressed,false
otherwise.
-