blob: 1e06d8000873ff0b21c3ad2fc45a2075158b1f98 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 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.core.internal.jpa2.resource.java.source;
import org.eclipse.jpt.core.internal.resource.java.source.SourceNamedQueriesAnnotation;
import org.eclipse.jpt.core.resource.java.JavaResourceNode;
import org.eclipse.jpt.core.resource.java.NestableNamedQueryAnnotation;
import org.eclipse.jpt.core.utility.jdt.Type;
/**
* javax.persistence.NamedQueries
*/
public final class SourceNamedQueries2_0Annotation
extends SourceNamedQueriesAnnotation
{
public SourceNamedQueries2_0Annotation(JavaResourceNode parent, Type type) {
super(parent, type);
}
@Override
protected NestableNamedQueryAnnotation buildNamedQuery(int index) {
return SourceNamedQuery2_0Annotation.createNestedNamedQuery(this, this.annotatedElement, index, this.daa);
}
}