blob: 4a402a3e6c6580d61e9ce7704945989c9932ff51 [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.ecp.common.utilities;
import org.eclipse.emf.edit.provider.ComposedAdapterFactory;
import org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider;
/**
* Default Label Provider for EMF. Creates an adapter factory label provider for all registered EMF packages.
*
* @author helming
*/
public class DefaultLabelProvider extends AdapterFactoryLabelProvider {
/**
* Default constructor.
*/
public DefaultLabelProvider() {
super(new ComposedAdapterFactory(ComposedAdapterFactory.Descriptor.Registry.INSTANCE));
}
}