blob: 9d8c591533589833321b694febf5f3b0a5b92da6 [file] [log] [blame]
/**
* Copyright (c) 2004 - 2010 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.revision;
/**
* Backported from 3.0/4.0
*
* @author Eike Stepper
* @since 3.0
*/
public interface CDORevisionHandler
{
/**
* Handles a revision.
*
* @return <code>true</code> to indicate that the caller may pass more revisions, <code>false</code> otherwise.
* @since 4.0
*/
public boolean handleRevision(CDORevision revision);
}