Package abstrasy

Source Code of abstrasy.SELF

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
*/

/**
* Classe statique ToolKit pour Heap.
*/
public final class SELF {

    /**
     * Vérifie l'assertion selon laquelle l'objet courant ne doit pas être final.
     *
     * Ainsi, si l'objet courant n'est pas mutable, une exception "Access to final value" est lancée.
     *
     * @throws InterpreterException
     */
    public static final void require_SELF_mutable() throws InterpreterException {
        get().requireAccessType(Node.ACCESSVTYPE_MUTABLE_WRITELOCK);
    }

    /**
     * Echange le node proposé en argument avec le SELF 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.getSelf();
        interpreter.setSelf(node);
        return pred;
    }

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

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

}
TOP

Related Classes of abstrasy.SELF

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.