blob: 5c4bacea4464afb69727efc4d25df05ac5bad4d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.eclipselink.ui.internal.v2_4.details.orm;
import org.eclipse.jpt.common.core.JptResourceType;
import org.eclipse.jpt.jpa.eclipselink.core.JptJpaEclipseLinkCorePlugin;
import org.eclipse.jpt.jpa.eclipselink.ui.internal.v2_2.details.orm.EclipseLinkOrmXml2_2UiDefinition;
import org.eclipse.jpt.jpa.ui.ResourceUiDefinition;
public class EclipseLinkOrmXml2_4UiDefinition
extends EclipseLinkOrmXml2_2UiDefinition {
// singleton
private static final ResourceUiDefinition INSTANCE = new EclipseLinkOrmXml2_4UiDefinition();
/**
* Return the singleton
*/
public static ResourceUiDefinition instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private EclipseLinkOrmXml2_4UiDefinition() {
super();
}
@Override
public boolean providesUi(JptResourceType resourceType) {
return resourceType.equals(JptJpaEclipseLinkCorePlugin.ECLIPSELINK_ORM_XML_2_4_RESOURCE_TYPE);
}
}