Exemple #1
0
  public boolean moveElementTo(XStorage xSource, String sName, XStorage xDest) {
    // move element with name sName from xSource to xDest
    try {
      xSource.moveElementTo(sName, xDest, sName);
    } catch (Exception e) {
      Error("Element moving failed, exception: " + e);
      return false;
    }

    return true;
  }