blob: dc59a4f0393e4f897843de0d41f5fb3b767be700 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.core.subscribers;
import java.util.Date;
/**
* A checked-in change set represents a group of resource
* changes that were previously checked into a repository
* as a single logical change.
* <p>
* A previously checked-in set of changes may not apply directly
* to the local versions of the resources involved. However,
* a <code>SyncInfo</code> is still used to reprsent each change.
* The base and remote slots of the <code>SyncInfo</code> identify
* the state before and after the resources were checked-in.
* @since 3.1
*/
public abstract class CheckedInChangeSet extends ChangeSet {
public abstract String getAuthor();
public abstract Date getDate();
}