Package de.fu_berlin.inf.dpp.concurrent.jupiter.internal.text

Examples of de.fu_berlin.inf.dpp.concurrent.jupiter.internal.text.NoOperation


            // TODO Use timestamps correctly!
            log.warn("Timestamp operations are not tested at the moment");

            updateVectorTime(jupiterActivity.getTimestamp());
            return new NoOperation();
        }

        Timestamp timestamp = jupiterActivity.getTimestamp();
        if (!(timestamp instanceof JupiterVectorTime)) {
            throw new IllegalArgumentException(
View Full Code Here


     *         in the given editor
     */
    protected Operation calcUndoOperation(SPath editor) {

        if (!undoHistory.canUndo(editor))
            return new NoOperation(); // nothing to undo

        Operation lastLocal = undoHistory.getLatestLocal(editor);

        assert lastLocal != null;

View Full Code Here

     *         editor
     */
    protected Operation calcRedoOperation(SPath editor) {

        if (!undoHistory.canRedo(editor))
            return new NoOperation(); // nothing to redo

        Operation lastUndo = undoHistory.getLatestRedoable(editor);

        assert lastUndo != null;

View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.concurrent.jupiter.internal.text.NoOperation

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.