コード例 #1
0
 public Object loadValueFromVFile(final VFile file) {
   try {
     final XmlElementHandler h = new XmlElementHandler();
     new WikiParser(this.getJSpiceConf(), h).parse(new BufferedReader(file.readContents()));
     return h.giveItUp();
   } catch (IOException e) {
     throw new RuntimeException(e);
   } catch (SAXException e) {
     throw new RuntimeException(e);
   }
 }