protected abstract com.lowagie.text.Rectangle getPaperSize();
protected int addLabelBox( String text, int xPos, int yPos, int labelWidth, int labelHeight,
int fontSize, float scaleFactor ) {
Box labelBox = ModelFactory.eINSTANCE.createBox();
labelBox.setSize(new Dimension(labelWidth, labelHeight));
labelBox.setLocation(new Point(xPos, yPos));
LabelBoxPrinter labelBoxPrinter = new LabelBoxPrinter(scaleFactor);
labelBox.setBoxPrinter(labelBoxPrinter);
labelBox.setID("Standard Label"); //$NON-NLS-1$