}
Object oMaster = xMSFDoc.createInstance("com.sun.star.text.FieldMaster.User");
XPropertySet xPSet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, oMaster);
xPSet.setPropertyValue("Name", FieldName);
xPSet.setPropertyValue("Content", FieldTitle);
xDepField.attachTextFieldMaster(xPSet);
xTextCursor.getText().insertTextContent(xTextCursor, xFieldContent, false);
}
catch( com.sun.star.uno.Exception exception ){
exception.printStackTrace(System.out);
}}