blob: 2cd39e429824d4d759eb43eb6ce95189552c115f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.resource.java;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.jpa2.resource.java.OneToOne2_0Annotation;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentAttribute;
import org.eclipse.jpt.core.utility.TextRange;
/**
* javax.persistence.OneToOne
*/
public final class NullOneToOneAnnotation
extends NullOwnableRelationshipMappingAnnotation
implements OneToOne2_0Annotation
{
public NullOneToOneAnnotation(JavaResourcePersistentAttribute parent) {
super(parent);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
@Override
protected OneToOne2_0Annotation addAnnotation() {
return (OneToOne2_0Annotation) super.addAnnotation();
}
// ***** optional
public Boolean getOptional() {
return null;
}
public void setOptional(Boolean optional) {
if (optional != null) {
this.addAnnotation().setOptional(optional);
}
}
public TextRange getOptionalTextRange(CompilationUnit astRoot) {
return null;
}
// ********** JPA 2.0 - OrphanRemovable2_0 implementation **********
public Boolean getOrphanRemoval() {
return null;
}
public void setOrphanRemoval(Boolean orphanRemoval) {
if (orphanRemoval != null) {
this.addAnnotation().setOrphanRemoval(orphanRemoval);
}
}
public TextRange getOrphanRemovalTextRange(CompilationUnit astRoot) {
return null;
}
// ***** cascade detach - JPA 2.0
public boolean isCascadeDetach() {
return false;
}
public void setCascadeDetach(boolean detach) {
this.addAnnotation().setCascadeDetach(detach);
}
}