/** * Copyright (c) 2013 MEDEVIT <office@medevit.at>. * 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: * MEDEVIT <office@medevit.at> - initial API and implementation */ package ch.elexis.core.model; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Identifiable</b></em>'. * <!-- end-user-doc --> * * * @see ch.elexis.core.model.ModelPackage#getIdentifiable() * @model interface="true" abstract="true" * @generated */ public interface Identifiable { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Return an identifier for this object that is guaranteed to be globally unique. * <!-- end-model-doc --> * @model kind="operation" * @generated */ String getId(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * return a human readable identifier (not necessarily unique) for this Object * <!-- end-model-doc --> * @model kind="operation" * @generated */ String getLabel(); } // Identifiable