Print
public final class BigPrint extends java.lang.Object implements Print
Note that this print lays out content under the assumption that every page will have the same pixel width and height. If a BigPrint is wrapped in a print that violates this expectation, it is likely that the output will skip and/or repeat certain portions of the target's content. Some examples of this behavior:
Constructor | Description |
---|---|
BigPrint(Print target) |
Constructs a BigPrint.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
equals(java.lang.Object obj) |
|
Print |
getTarget() |
Returns the wrapped print which is being split across pages.
|
int |
hashCode() |
|
PrintIterator |
iterator(org.eclipse.swt.graphics.Device device,
org.eclipse.swt.graphics.GC gc) |
Returns a PrintIterator for laying out the contents of this Print.
|
public BigPrint(Print target)
target
- public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public Print getTarget()
public PrintIterator iterator(org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)
Print