blob: 90e79b6c85fcacbc24491d9347c10905d8f9cb35 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 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.core.internal.jpa2_2.context.persistence.schemagen;
import org.eclipse.jpt.jpa.core.context.persistence.PersistenceUnit;
import org.eclipse.jpt.jpa.core.internal.jpa2_1.context.persistence.schemagen.GenericSchemaGeneration2_1;
import org.eclipse.jpt.jpa.core.jpa2_2.context.persistence.schemagen.SchemaGeneration2_2;
public class GenericSchemaGeneration2_2 extends GenericSchemaGeneration2_1 implements SchemaGeneration2_2 {
public GenericSchemaGeneration2_2(PersistenceUnit parent) {
super(parent);
}
}