blob: d41d6c021eb21c9478f43cde959d67d996eb07ee [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.diagram.model;
import org.eclipse.emf.ecore.EObject;
/**
* This interface represents objects that is linked with other object in a
* difference model
*
* @author Phong Nguyen Le
* @since 1.0
* @model abstract="true"
*/
public interface LinkedObject extends EObject {
/**
*
* @return
* @model
*/
Object getObject();
/**
* Sets the value of the '{@link org.eclipse.epf.diagram.model.LinkedObject#getObject <em>Object</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Object</em>' attribute.
* @see #getObject()
* @generated
*/
void setObject(Object value);
}