List of usage examples for javax.xml.registry.infomodel RegistryObject toXML
String toXML() throws JAXRException;
From source file:it.cnr.icar.eric.client.ui.swing.JAXRClient.java
/** * DOCUMENT ME!//w w w. j ava 2s . com * * @param objectsToExport DOCUMENT ME! */ public void exportObjects(Collection<?> objectsToExport) { try { Iterator<?> iter = objectsToExport.iterator(); while (iter.hasNext()) { RegistryObject ro = (RegistryObject) iter.next(); System.err.println(ro.toXML()); } } catch (JAXRException e) { RegistryBrowser.displayError(e); } }