home *** CD-ROM | disk | FTP | other *** search
- package sun.awt.motif;
-
- import java.awt.PrintGraphics;
- import java.awt.PrintJob;
-
- class PageGraphics extends PSGraphics implements PrintGraphics {
- boolean active = true;
-
- public PageGraphics(PSPrintStream var1, int var2) {
- super(var1, var2);
- }
-
- public void dispose() {
- if (this.active) {
- super.stream.endPage();
- super.dispose();
- }
-
- this.active = false;
- }
-
- public PrintJob getPrintJob() {
- return super.stream.job;
- }
- }
-