Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 9f1ea75c682a0517de565d09953e4b2a4280ee9b (plain) (tree)
1
2
3
4
5
6

                                                                                

                                                                        
                                                           
                                            



















                                                                                 
/*******************************************************************************
 * 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 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.core.client.listeners;

import org.eclipse.team.internal.ccvs.core.ILogEntry;

/**
 * Interface for receiving log entries from the <code>LogListener</code>
 */
public interface ILogEntryListener {

    /**
     * A log entry was received for the current file
     * @param entry the received log entry.
     */
    void handleLogEntryReceived(ILogEntry entry);
    
}

Back to the top