blob: 31d714ad907849cf6bc55e3e077a242178815a89 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* 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:
******************************************************************************/
package org.eclipse.emf.emfstore.internal.client.ui.views.historybrowserview;
import org.eclipse.jface.viewers.CellLabelProvider;
import org.eclipse.jface.viewers.ViewerCell;
/**
* @author Aumann
* Is just a stub (a label provider has to bee provided) at the moment, but it might be possible to use the
* label provider for drawing?
*/
public class BranchGraphLabelProvider extends CellLabelProvider {
@Override
public void update(ViewerCell cell) {
// just a stub
}
}