blob: 760ba2f006fcc7fd5261cbd7c6c87d7914a0e487 [file] [log] [blame]
/**
* Copyright (c) 2004 - 2008 Eike Stepper, Germany.
* 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:
* Eike Stepper - initial API and implementation
*
* $Id: Identifiable.java,v 1.1 2008-08-08 10:10:32 estepper Exp $
*/
package org.eclipse.net4j.pop.base;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Identifiable</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.net4j.pop.base.Identifiable#getId <em>Id</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.net4j.pop.base.BasePackage#getIdentifiable()
* @model interface="true" abstract="true"
* @generated
*/
public interface Identifiable extends EObject
{
/**
* Returns the value of the '<em><b>Id</b></em>' attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @return the value of the '<em>Id</em>' attribute.
* @see org.eclipse.net4j.pop.base.BasePackage#getIdentifiable_Id()
* @model required="true" transient="true" changeable="false" volatile="true" derived="true"
* @generated
*/
String getId();
} // Identifiable