blob: ae0bfdfb0d87457e28d316550f2c18322474cc6a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 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.jpa2.resource.java;
import org.eclipse.jpt.common.core.resource.java.JavaResourceNode;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.jpa.core.internal.resource.java.NullBaseColumnAnnotation;
import org.eclipse.jpt.jpa.core.jpa2.resource.java.MapKeyJoinColumn2_0Annotation;
/**
* <code>javax.persistence.MapKeyJoinColumn</code>
*/
public final class NullMapKeyJoinColumnAnnotation
extends NullBaseColumnAnnotation<MapKeyJoinColumn2_0Annotation>
implements MapKeyJoinColumn2_0Annotation
{
public NullMapKeyJoinColumnAnnotation(JavaResourceNode parent) {
super(parent);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
// ***** referenced column name
public String getReferencedColumnName() {
return null;
}
public void setReferencedColumnName(String referencedColumnName) {
throw new UnsupportedOperationException();
}
public TextRange getReferencedColumnNameTextRange() {
return null;
}
public boolean referencedColumnNameTouches(int pos) {
return false;
}
}