public abstract class PrintTicket extends Object implements Iterable<IPrintTicketItem>
Basic class incapsulating common features of a print ticket of any levels
Constructor and Description |
---|
PrintTicket(IPrintTicketItem... items)
Creates print ticket instance.
|
Modifier and Type | Method and Description |
---|---|
void |
add(IPrintTicketItem... items)
Adds list of items to the end of print ticket items list.
|
Iterator<IPrintTicketItem> |
iterator()
Implementation of
Iterator<IPrintTicketItem> interface. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public PrintTicket(IPrintTicketItem... items)
Creates print ticket instance.
items
- Arbitrary array IPrintTicketItem
objects.
Each one must be a Feature
, ParameterInit
or Property
object.public void add(IPrintTicketItem... items)
Adds list of items to the end of print ticket items list.
Each one must be a Feature
, {code Option} or Property
object.
items
- List of items to add.public Iterator<IPrintTicketItem> iterator()
Implementation of Iterator<IPrintTicketItem>
interface.
iterator
in interface Iterable<IPrintTicketItem>