blob: bfe7c6a831e031f9ecd08d2cb8bc224db949b7ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012-2014 SAP SE.
* 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:
* SAP SE - initial API and implementation and/or initial documentation
*
*******************************************************************************/
/**
*/
package org.eclipse.ogee.model.odata;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Include Restriction</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ogee.model.odata.IncludeRestriction#getTermNamespace <em>Term Namespace</em>}</li>
* <li>{@link org.eclipse.ogee.model.odata.IncludeRestriction#getQualifier <em>Qualifier</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getIncludeRestriction()
* @model
* @generated
*/
public interface IncludeRestriction extends EObject {
/**
* Returns the value of the '<em><b>Term Namespace</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Term Namespace</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Term Namespace</em>' attribute.
* @see #setTermNamespace(String)
* @see org.eclipse.ogee.model.odata.OdataPackage#getIncludeRestriction_TermNamespace()
* @model
* @generated
*/
String getTermNamespace();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.IncludeRestriction#getTermNamespace <em>Term Namespace</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Term Namespace</em>' attribute.
* @see #getTermNamespace()
* @generated
*/
void setTermNamespace(String value);
/**
* Returns the value of the '<em><b>Qualifier</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Qualifier</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Qualifier</em>' attribute.
* @see #setQualifier(String)
* @see org.eclipse.ogee.model.odata.OdataPackage#getIncludeRestriction_Qualifier()
* @model
* @generated
*/
String getQualifier();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.IncludeRestriction#getQualifier <em>Qualifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Qualifier</em>' attribute.
* @see #getQualifier()
* @generated
*/
void setQualifier(String value);
} // IncludeRestriction