/******************************************************************************* * Copyright (c) 2006 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.team.internal.ccvs.ui; import org.eclipse.team.core.history.IFileRevision; public class MessageCVSHistoryCategory extends AbstractCVSHistoryCategory { private String message; public MessageCVSHistoryCategory(String message){ this.message = message; } public String getName() { return message; } public boolean collectFileRevisions(IFileRevision[] fileRevisions, boolean shouldRemove) { return false; } public IFileRevision[] getRevisions() { return null; } public boolean hasRevisions() { return false; } }