blob: 7b04a13318e3f29bc6b87d6d2e108da2c1558338 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ui.history;
import org.eclipse.team.core.history.IFileRevision;
public class MessageHistoryCategory extends AbstractHistoryCategory {
private String message;
public MessageHistoryCategory(String message){
this.message = message;
}
@Override
public String getName() {
return message;
}
@Override
public boolean collectFileRevisions(IFileRevision[] fileRevisions, boolean shouldRemove) {
return false;
}
@Override
public IFileRevision[] getRevisions() {
return new IFileRevision[0];
}
@Override
public boolean hasRevisions() {
return false;
}
}