blob: c8529ade8c2c6233c2d4b2abd1f11e372ab0724e [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
**************************************************************************/
package org.eclipse.emf.cdo.spi.common;
import org.eclipse.emf.cdo.common.id.CDOIDObject;
/**
* @author Eike Stepper
*/
public class CDOIDLongImpl extends AbstractCDOIDLong implements CDOIDObject
{
private static final long serialVersionUID = 1L;
public CDOIDLongImpl()
{
}
public CDOIDLongImpl(long value)
{
super(value);
}
public Type getType()
{
return Type.OBJECT;
}
@Override
public String toString()
{
return "OID" + getLongValue();
}
}