XamDataAccessorXMLpublic class XamDataAccessorXML extends XamDataAccessor TestEdit Load/Save model - XML version.
Not written yet, but at least I thought of it. :-)
DOM will probably be a good approach here. |
Constructors Summary |
---|
public XamDataAccessorXML()
super();
|
Methods Summary |
---|
public Exam | load(java.io.BufferedReader is)load one file, given an open BufferedReader
throw new IllegalArgumentException(
"XamDataAccessorXML cannot yet LOAD files");
// TODO: use DOM to parse it.
| public void | save(java.io.PrintWriter out, Exam model)
throw new IllegalArgumentException(
"XamDataAccessorXML cannot yet SAVE files");
// TODO convert to DOM, and end with
// tree.write(out);
|
|