All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Interface java.awt.print.Printable

public interface Printable
When building a Book, pairs of PageFormat instances and instances that implement this Printable interface are used to describe each page. The instance implementing Prinable will be called to print the page's graphics.


Method Index

 o print(Graphics2D)
A Book instance will call the Printable interface requesting that a page be printed into 'graphics'.

Methods

 o print
public abstract void print(Graphics2D graphics)
A Book instance will call the Printable interface requesting that a page be printed into 'graphics'. 11/17/97 Note: Should pass a PrintGraphics2D instance, but this class doesn't yet exist in the source.


All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature