blob: b9d9149eb8c6b98760ce5db4911ab2e6eb45ee1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 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.commands;
import org.eclipse.jpt.jpa.core.JpaProject;
public class JpaJavaGeneratorMetadataConversionHandler extends AbstractJpaJavaMetadataConversionHandler {
public JpaJavaGeneratorMetadataConversionHandler() {
super();
}
@Override
protected void converterJavaGlobalMetadata(JpaProject jpaProject) {
super.getJpaPlatformUi(jpaProject).convertJavaGeneratorMetadataToGlobal(jpaProject);
}
}