Package de.fu_berlin.inf.dpp.whiteboard.sxe.exceptions

Examples of de.fu_berlin.inf.dpp.whiteboard.sxe.exceptions.CommittedRecordException


    return setRecords.getLast().getLastModifiedBy();
  }

  public void setLastModifiedBy(String lastModifiedBy) {
    if (isCommitted())
      throw new CommittedRecordException();
    initialSet.setLastModifiedBy(lastModifiedBy);
  }
View Full Code Here


    return createMoveRecord(newParent, nextPrimaryWeight(newParent));
  }

  public void clear() {
    if (isCommitted())
      throw new CommittedRecordException();
    setRecords.clear();
  }
View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.whiteboard.sxe.exceptions.CommittedRecordException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.