blob: 940675a836b1c25097dbd9f7b92ea9235e7b135c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
* E.D.Willink Bug 298128
*******************************************************************************/
package org.eclipse.ocl.examples.pivot;
import org.eclipse.jdt.annotation.NonNull;
/**
* An interface providing reflection service for the metaclasses that the
* OCL borrows from UML.
* <p>
* See the {@link Environment} class for a description of the
* generic type parameters of this interface.
* </p>
*
* @author Christian W. Damus (cdamus)
*/
public interface UMLReflection {
/**
* Stereotype applied to classifier invariant constraints.
*/
@NonNull String INVARIANT = "invariant"; //$NON-NLS-1$
/**
* Stereotype applied to operation precondition constraints.
*/
@NonNull String PRECONDITION = "precondition"; //$NON-NLS-1$
/**
* Stereotype applied to operation postcondition constraints.
*/
@NonNull String POSTCONDITION = "postcondition"; //$NON-NLS-1$
/**
* Stereotype applied to operation body conditions.
*/
@NonNull String BODY = "body"; //$NON-NLS-1$
/**
* Stereotype applied definition expressions.
*/
@NonNull String DEFINITION = "definition"; //$NON-NLS-1$
/**
* Stereotype applied initial value expressions.
*/
@NonNull String INITIAL = "initial"; //$NON-NLS-1$
/**
* Stereotype applied derived value expressions.
*/
@NonNull String DERIVATION = "derivation"; //$NON-NLS-1$
}