blob: 5e99e4c3e0ebdb2f236c48c91307a4e6c5404436 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.resource.java;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jpt.core.internal.resource.java.binary.BinaryIdClassAnnotation;
import org.eclipse.jpt.core.internal.resource.java.source.SourceIdClassAnnotation;
import org.eclipse.jpt.core.resource.java.Annotation;
import org.eclipse.jpt.core.resource.java.AnnotationDefinition;
import org.eclipse.jpt.core.resource.java.IdClassAnnotation;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentMember;
import org.eclipse.jpt.core.utility.jdt.Member;
import org.eclipse.jpt.core.utility.jdt.Type;
/**
* javax.persistence.IdClass
*/
public final class IdClassAnnotationDefinition
implements AnnotationDefinition
{
// singleton
private static final AnnotationDefinition INSTANCE = new IdClassAnnotationDefinition();
/**
* Return the singleton.
*/
public static AnnotationDefinition instance() {
return INSTANCE;
}
/**
* Ensure single instance.
*/
private IdClassAnnotationDefinition() {
super();
}
public Annotation buildAnnotation(JavaResourcePersistentMember parent, Member member) {
return new SourceIdClassAnnotation(parent, (Type) member);
}
public Annotation buildNullAnnotation(JavaResourcePersistentMember parent) {
throw new UnsupportedOperationException();
}
public Annotation buildAnnotation(JavaResourcePersistentMember parent, IAnnotation jdtAnnotation) {
return new BinaryIdClassAnnotation(parent, jdtAnnotation);
}
public String getAnnotationName() {
return IdClassAnnotation.ANNOTATION_NAME;
}
}