Class CompositeEntry
- java.lang.Object
-
- org.eclipse.nebula.paperclips.core.CompositeEntry
-
public class CompositeEntry extends java.lang.Object
An entry in a CompositePiece.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) org.eclipse.swt.graphics.Point
offset
(package private) PrintPiece
piece
-
Constructor Summary
Constructors Constructor Description CompositeEntry(PrintPiece piece, org.eclipse.swt.graphics.Point offset)
Constructs a CompositeEntry with the given PrintPiece and offset.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
checkOffset(org.eclipse.swt.graphics.Point offset)
void
dispose()
Disposes this entry's print piece.
-
-
-
Field Detail
-
piece
final PrintPiece piece
-
offset
final org.eclipse.swt.graphics.Point offset
-
-
Constructor Detail
-
CompositeEntry
public CompositeEntry(PrintPiece piece, org.eclipse.swt.graphics.Point offset)
Constructs a CompositeEntry with the given PrintPiece and offset.- Parameters:
piece
- the PrintPiece for this entry.offset
- the painting offset within the CompositePrint.
-
-