blob: 616609f5cf2bec2da5f7106a6c333433d119e0ac [file] [log] [blame]
/*
* Copyright (c) 2013 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.common.id;
/**
* An identifiable object.
*
* @author Eike Stepper
* @see CDOIDUtil#getCDOID(Object)
* @since 4.3
* @apiviz.has {@link CDOID}
*/
public interface CDOIdentifiable
{
public CDOID getID();
}