Package abstrasy

Source Code of abstrasy.ROOT

package abstrasy;

import abstrasy.interpreter.InterpreterException;
import abstrasy.interpreter.StdErrors;

/**
* Abstrasy Interpreter
*
* Copyright : Copyright (c) 2006-2012, Luc Bruninx.
*
* Concédée sous licence EUPL, version 1.1 uniquement (la «Licence»).
*
* Vous ne pouvez utiliser la présente oeuvre que conformément à la Licence.
* Vous pouvez obtenir une copie de la Licence à l’adresse suivante:
*
*   http://www.osor.eu/eupl
*
* Sauf obligation légale ou contractuelle écrite, le logiciel distribué sous
* la Licence est distribué "en l’état", SANS GARANTIES OU CONDITIONS QUELLES
* QU’ELLES SOIENT, expresses ou implicites.
*
* Consultez la Licence pour les autorisations et les restrictions
* linguistiques spécifiques relevant de la Licence.
*
*
* @author Luc Bruninx
* @version 1.0
*/

public final class ROOT {

    /**
     * Echange le node proposé en argument avec le ROOT actuel. La méthode
     * retourne ensuite le node précédent (qui peut être null).
     * @param node
     * @return old
     * @throws InterpreterException
     */
    public static final Node swap(Node node) throws InterpreterException {
        if (node == null)
            throw new InterpreterException(StdErrors.Internal_error);
        Interpreter interpreter = Interpreter.mySelf();
        Node pred = interpreter.getRoot();
        interpreter.setRoot(node);
        return pred;
    }


    /**
     * Remplace le précédent ROOT par celui porposé en argument.
     *
     * @param node
     */
    public static final void restore(Node node) throws InterpreterException {
        Interpreter.mySelf().setRoot(node);
    }

    /**
     * Retourne le valeur de ROOT.
     *
     * Cette méthode est principalement utilisée par l'opérateur (root).
     *
     * @return node
     */
    public static final Node get() throws InterpreterException {
        Node res = Interpreter.mySelf().getRoot();
        if (res != null)
            return res.requireReadLockAccess();
        else
            throw new InterpreterException(StdErrors.Symbol_not_defined);
    }

}
TOP

Related Classes of abstrasy.ROOT

TOP
Copyright © 2018 www.massapi.com. 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.