//put something on the drawpage
log.println( "inserting some Shapes" );
oShapes = (XShapes) UnoRuntime.queryInterface(XShapes.class,oObj);
XShape Shape1 = SOF.createShape(xDrawDoc,
3000,4500,15000,1000,"Ellipse");
oShapes.add(SOF.createShape(xDrawDoc,
2000,1500,1000,1000,"Line"));
oShapes.add(Shape1);
XShape Shape2 = SOF.createShape(xDrawDoc,
5000,3500,7500,5000,"Rectangle");
oShapes.add(Shape2);