| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_ALIGN
Constant for the default alignment of child Prints.
|
(package private) java.util.List<LayerEntryImpl> |
entries |
| Constructor and Description |
|---|
LayerPrint()
Constructs a new LayerPrint.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(Print print)
Adds the given Print to this LayerPrint using the default alignment.
|
void |
add(Print print,
int align)
Adds the given Print to this LayerPrint using the specified alignment.
|
boolean |
equals(java.lang.Object obj) |
LayerEntry[] |
getEntries()
Returns an array of entries in this LayerPrint.
|
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 static final int DEFAULT_ALIGN
final java.util.List<LayerEntryImpl> entries
public void add(Print print)
print - the Print to add.DEFAULT_ALIGNpublic void add(Print print, int align)
print - the Print to add.align - the alignment for the Print. May be one of SWT.LEFT,
SWT.CENTER, or SWT.RIGHT.public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic LayerEntry[] getEntries()
public PrintIterator iterator(org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)
Print