115116117118119120121122123124125
((DBNode) n).expandSource(); } root.appendChild(doc.importNode(n, true)); } else { throw new XindiceRuntimeException("Unknown result type (" + element.getClass().getName() + ") in nodeset"); } count++; }
309310311312313314315316317318319
} try { config = new Configuration(DOMParser.toDocument(Xindice.DEFAULT_CONFIGURATION), false); } catch (XindiceException e) { throw new XindiceRuntimeException("Unable to parse default database configuration", e); } } return config; }
7576777879808182
try { this.data = data.getBytes("utf-8"); this.pos = 0; this.len = this.data.length; } catch (UnsupportedEncodingException e) { throw new XindiceRuntimeException("Java doesn't support UTF-8 encoding", e); } }
308309310311312313314315
public final String toString() { try { return new String(data, pos, len, "utf-8"); } catch (UnsupportedEncodingException e) { throw new XindiceRuntimeException("Java doesn't seem to support UTF-8!", e); } }
155156157158159160161162
this.keyLen = keyLen; try { prepareNextNode(); } catch (Exception e) { throw new XindiceRuntimeException(e); } }
185186187188189190191192193194
Node n = nextNode; try { prepareNextNode(); } catch (Exception e) { throw new XindiceRuntimeException(e); } return n; }
13711372137313741375137613771378
}; try { prepareNextNode(); } catch (Exception e) { throw new XindiceRuntimeException(e); } }
14801481148214831484148514861487148814891490
node = ni.nextNode(); if (node == null) { try { prepareNextNode(); } catch (Exception e) { throw new XindiceRuntimeException(e); } } return n; }
315316317318319320321322323324325