/******************************************************************************* * Copyright (c) 2010, 2011 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.docs.intent.client.ui.editor.outline; import org.eclipse.emf.common.notify.AdapterFactory; import org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider; /** * The label provider for the objects shown in the outline view. * * @author <a href="mailto:alex.lagarde@obeo.fr">Alex Lagarde</a> */ public class IntentOutlinePageLabelProvider extends AdapterFactoryLabelProvider { /** * Constructor. * * @param adapterFactory * is the adapter factory */ public IntentOutlinePageLabelProvider(AdapterFactory adapterFactory) { super(adapterFactory); } }