blob: afd851dd072be4d415a4957d39c717a0f1c43321 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.ui.internal.structure;
import org.eclipse.jpt.common.ui.jface.ItemExtendedLabelProviderFactory;
/**
* This factory builds item label providers for a Java source file
* JPA Structure View.
*/
public class JavaStructureItemLabelProviderFactory
extends MappingStructureItemLabelProviderFactory
{
// singleton
private static final ItemExtendedLabelProviderFactory INSTANCE = new JavaStructureItemLabelProviderFactory();
/**
* Return the singleton
*/
public static ItemExtendedLabelProviderFactory instance() {
return INSTANCE;
}
protected JavaStructureItemLabelProviderFactory() {
super();
}
}