blob: ed2c59e202e425500e928ce28a3d13afff7373f5 [file] [log] [blame]
/**
* Copyright (c) 2009 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Frederic Madiot (Mia-Software) - meta-model design
* Gregoire DUPE (Mia-Software) - design and implementation
*
*
* $Id$
*/
package org.eclipse.modisco.infra.query;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>OCL Model Query</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.infra.query.OCLModelQuery#getQuery <em>Query</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.infra.query.QueryPackage#getOCLModelQuery()
* @model
* @generated
* @deprecated replaced by EMF Facet, cf. https://bugs.eclipse.org/bugs/show_bug.cgi?id=470578
*/
@Deprecated
public interface OCLModelQuery extends ModelQuery {
/**
* Returns the value of the '<em><b>Query</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Query</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* OCLModelQuery::query is the OCL query string.
* <!-- end-model-doc -->
* @return the value of the '<em>Query</em>' attribute.
* @see #setQuery(String)
* @see org.eclipse.modisco.infra.query.QueryPackage#getOCLModelQuery_Query()
* @model
* @generated
*/
String getQuery();
/**
* Sets the value of the '{@link org.eclipse.modisco.infra.query.OCLModelQuery#getQuery <em>Query</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Query</em>' attribute.
* @see #getQuery()
* @generated
*/
void setQuery(String value);
} // OCLModelQuery