// creation of testobject here
XPropertySet props = (XPropertySet) UnoRuntime.queryInterface
(XPropertySet.class, xSheetDoc);
XAreaLinks links = (XAreaLinks) AnyConverter.toObject(
new Type(XAreaLinks.class),props.getPropertyValue("AreaLinks")) ;
CellAddress addr = new CellAddress ((short) 1,2,3) ;
String aSourceArea = util.utils.getFullTestURL("calcshapes.sxc");
links.insertAtPosition (addr, aSourceArea, "a2:b5", "", "") ;
oObj = (XInterface) AnyConverter.toObject(
new Type(XInterface.class), links.getByIndex(0)) ;