blob: 3ffc637bd2c7c03d882e2915fe638518a8f92cc3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 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.resource.java;
import org.eclipse.jpt.jpa.core.resource.java.JavaResourcePersistentType;
import org.eclipse.jpt.jpa.core.resource.java.TableAnnotation;
/**
* <code>javax.persistence.Table</code>
*/
public final class NullTableAnnotation
extends NullBaseTableAnnotation<TableAnnotation>
implements TableAnnotation
{
protected NullTableAnnotation(JavaResourcePersistentType parent) {
super(parent);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
}