private String getCurrentValue(String xpath) {
    XmlObject[] paths =
        outlineEditor.getOutlineTable().getXmlObjectTreeModel().getXmlObject().selectPath(xpath);

    String v = "";
    for (XmlObject obj : paths) v += obj.toString();
    return v;
  }