class PdfContentStreamProcessor {
/**
* Invokes an operator.
* @param operator the PDF Syntax of the operator
* @param operands a list with operands
*/
private void invokeOperator(PdfLiteral operator, ArrayList<PdfObject> operands) throws Exception{
ContentOperator op = operators.get(operator.toString());
if (op == null)
op = operators.get(DEFAULTOPERATOR);
op.invoke(this, operator, operands);
}
}