blob: 08954befb3a67c0afcbdc4e8a5b6041d8859097f [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Simple Value</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getSimpleValue()
* @model interface="true" abstract="true"
* @generated
*/
public interface SimpleValue extends ConstantExpression {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation" required="true"
* @generated
*/
Object getValueObject();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
void setValueObject(Object value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model
* @generated
*/
SimpleValue copy();
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model kind="operation"
* @generated
*/
EDMTypes getEDMType();
} // SimpleValue