blob: 63c7d27ef6153afea4a78dd788ce92a8fdbeb1ff [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
* Simon McDuff - http://bugs.eclipse.org/213402
**************************************************************************/
package org.eclipse.emf.cdo.internal.common.id;
import org.eclipse.emf.cdo.common.id.CDOIDTempMeta;
import org.eclipse.emf.cdo.spi.common.AbstractCDOIDInteger;
/**
* @author Eike Stepper
*/
public class CDOIDTempMetaImpl extends AbstractCDOIDInteger implements CDOIDTempMeta
{
private static final long serialVersionUID = 1L;
public CDOIDTempMetaImpl(int value)
{
super(value);
}
public Type getType()
{
return Type.TEMP_META;
}
@Override
public String toString()
{
return "mid" + getIntValue();
}
}