blob: f7f7fe3e8341bb062f0225df33a437c9a8908094 [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 - delta support
**************************************************************************/
package org.eclipse.emf.cdo.common.revision;
import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.model.CDOClass;
import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta;
/**
* @author Eike Stepper
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface CDORevision
{
public static final long UNSPECIFIED_DATE = 0;
public static final int UNCHUNKED = -1;
public CDOClass getCDOClass();
public CDOID getID();
public int getVersion();
public long getCreated();
public long getRevised();
public boolean isCurrent();
public boolean isValid(long timeStamp);
public boolean isTransactional();
/**
* @since 2.0
*/
public boolean isResourceNode();
/**
* @since 2.0
*/
public boolean isResourceFolder();
public boolean isResource();
public CDORevisionData getData();
public CDORevisionDelta compare(CDORevision origin);
public void merge(CDORevisionDelta delta);
}