*/
public void process(PDFOperator operator, List arguments) throws IOException
{
//move to start of next text line
ArrayList args = new ArrayList();
args.add(new COSFloat(0.0f));
// this must be -leading instead of just leading as written in the
// specification (p.369) the acrobat reader seems to implement it the same way
args.add(new COSFloat(-1*context.getGraphicsState().getTextState().getLeading()));
// use Td instead of repeating code
context.processOperator("Td", args);
}