blob: 47150a357065dbf886a91d804bfb4fd3c773e5d6 [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.jpa2.resource.java.binary;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.internal.resource.java.binary.BinaryOneToOneAnnotation;
import org.eclipse.jpt.core.jpa2.resource.java.JPA2_0;
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;
/**
* BinaryOneToOne2_0Annotation
*/
public final class BinaryOneToOne2_0Annotation
extends BinaryOneToOneAnnotation
implements OneToOne2_0Annotation
{
private Boolean orphanRemoval;
// ********** constructor **********
public BinaryOneToOne2_0Annotation(JavaResourcePersistentAttribute parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
this.orphanRemoval = this.buildOrphanRemoval();
}
@Override
public void update() {
super.update();
this.setOrphanRemoval_(this.buildOrphanRemoval());
}
// ********** OneToOne2_0Annotation implementation **********
public Boolean getOrphanRemoval() {
return this.orphanRemoval;
}
public void setOrphanRemoval(Boolean orphanRemoval) {
throw new UnsupportedOperationException();
}
public TextRange getOrphanRemovalTextRange(CompilationUnit astRoot) {
throw new UnsupportedOperationException();
}
private Boolean buildOrphanRemoval() {
return (Boolean) this.getJdtMemberValue(JPA2_0.ONE_TO_ONE__ORPHAN_REMOVAL);
}
private void setOrphanRemoval_(Boolean orphanRemoval) {
Boolean old = this.orphanRemoval;
this.orphanRemoval = orphanRemoval;
this.firePropertyChanged(ORPHAN_REMOVAL_PROPERTY, old, orphanRemoval);
}
}