ExpressionKinds.java :  » UML » AndroMDA-3.2 » org » andromda » translation » ocl » Java Open Source

Java Open Source » UML » AndroMDA 3.2 
AndroMDA 3.2 » org » andromda » translation » ocl » ExpressionKinds.java
package org.andromda.translation.ocl;

/**
 * Contains the possible Expression Kinds.
 *
 * @author Chad Brandon
 */
public class ExpressionKinds
{
    /**
     * Signafies a <code>&lt;&lt;postcondition&gt;&gt;</code> expression.
     */
    public static final String POST = "post";

    /**
     * Signafies an <code>&lt;&lt;invariant&gt;&gt;</code> expression.
     */
    public static final String INV = "inv";

    /**
     * Signafies a <code>&lt;&lt;precondition&gt;&gt;</code> expression.
     */
    public static final String PRE = "pre";

    /**
     * Signafies a <code>&lt;&lt;definition&gt;&gt;</code> expression
     */
    public static final String DEF = "def";

    /**
     * Signafies a <code>&lt;&lt;body&gt;&gt;</code> expression
     */
    public static final String BODY = "body";
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.