blob: f4dbda26a9f743512799ef494a396d6de4f2b326 [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>Complex Type Usage</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ogee.model.odata.ComplexTypeUsage#getComplexType <em>Complex Type</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getComplexTypeUsage()
* @model
* @generated
*/
public interface ComplexTypeUsage extends IPropertyTypeUsage {
/**
* Returns the value of the '<em><b>Complex Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Complex Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Complex Type</em>' reference.
* @see #setComplexType(ComplexType)
* @see org.eclipse.ogee.model.odata.OdataPackage#getComplexTypeUsage_ComplexType()
* @model required="true"
* @generated
*/
ComplexType getComplexType();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.ComplexTypeUsage#getComplexType <em>Complex Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Complex Type</em>' reference.
* @see #getComplexType()
* @generated
*/
void setComplexType(ComplexType value);
} // ComplexTypeUsage