public void loadFromXMLNode(Node nodo) throws ADMINGLOExcepcion { try { xml.setFromXMLNode(nodo); } catch (Exception ex) { throw new ADMINGLOExcepcion(ex.getMessage(), ex); } }
public String storeToXMLNode() throws ADMINGLOExcepcion { String res = ""; this.setXMLParser(); try { res = xml.getXMLElem(null); } catch (Exception ex) { throw new ADMINGLOExcepcion(ex.getMessage(), ex); } return res; }