blob: 2efed0a9eb8c04bf708befffe10d94f69d9961c6 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2007 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 Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.notation;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>EObject Value Style</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.runtime.notation.EObjectValueStyle#getEObjectValue <em>EObject Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.runtime.notation.NotationPackage#getEObjectValueStyle()
* @model
* @generated
*/
public interface EObjectValueStyle extends NamedStyle {
/**
* Returns the value of the '<em><b>EObject Value</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>EObject Value</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>EObject Value</em>' reference.
* @see #setEObjectValue(EObject)
* @see org.eclipse.gmf.runtime.notation.NotationPackage#getEObjectValueStyle_EObjectValue()
* @model
* @generated
*/
EObject getEObjectValue();
/**
* Sets the value of the '{@link org.eclipse.gmf.runtime.notation.EObjectValueStyle#getEObjectValue <em>EObject Value</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>EObject Value</em>' reference.
* @see #getEObjectValue()
* @generated
*/
void setEObjectValue(EObject value);
} // EObjectValueStyle