blob: cd6098a2960deb12c8e74917c5f70414ebe15f10 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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 java.util.ListIterator;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentMember;
import org.eclipse.jpt.core.resource.java.JoinColumnAnnotation;
import org.eclipse.jpt.core.resource.java.JoinTableAnnotation;
import org.eclipse.jpt.utility.internal.iterators.EmptyListIterator;
public class NullJoinTable extends NullBaseTable implements JoinTableAnnotation
{
protected NullJoinTable(JavaResourcePersistentMember parent) {
super(parent);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
public JoinColumnAnnotation addInverseJoinColumn(int index) {
throw new UnsupportedOperationException();
}
public JoinColumnAnnotation addJoinColumn(int index) {
throw new UnsupportedOperationException();
}
public int indexOfInverseJoinColumn(JoinColumnAnnotation joinColumn) {
throw new UnsupportedOperationException();
}
public int indexOfJoinColumn(JoinColumnAnnotation joinColumn) {
throw new UnsupportedOperationException();
}
public JoinColumnAnnotation inverseJoinColumnAt(int index) {
return null;
}
public ListIterator<JoinColumnAnnotation> inverseJoinColumns() {
return EmptyListIterator.instance();
}
public int inverseJoinColumnsSize() {
return 0;
}
public JoinColumnAnnotation joinColumnAt(int index) {
return null;
}
public ListIterator<JoinColumnAnnotation> joinColumns() {
return EmptyListIterator.instance();
}
public int joinColumnsSize() {
return 0;
}
public void moveInverseJoinColumn(int targetIndex, int sourceIndex) {
throw new UnsupportedOperationException();
}
public void moveJoinColumn(int targetIndex, int sourceIndex) {
throw new UnsupportedOperationException();
}
public void removeInverseJoinColumn(int index) {
throw new UnsupportedOperationException();
}
public void removeJoinColumn(int index) {
throw new UnsupportedOperationException();
}
}