Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/resource/java/source/SourceCollectionTable2_0Annotation.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/resource/java/source/SourceCollectionTable2_0Annotation.java76
1 files changed, 40 insertions, 36 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/resource/java/source/SourceCollectionTable2_0Annotation.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/resource/java/source/SourceCollectionTable2_0Annotation.java
index 8591d533b1..c275fd698e 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/resource/java/source/SourceCollectionTable2_0Annotation.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/jpa2/resource/java/source/SourceCollectionTable2_0Annotation.java
@@ -12,7 +12,6 @@ package org.eclipse.jpt.core.internal.jpa2.resource.java.source;
import java.util.ListIterator;
import java.util.Vector;
-import org.eclipse.jdt.core.dom.Annotation;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.internal.resource.java.source.AnnotationContainerTools;
import org.eclipse.jpt.core.internal.resource.java.source.SourceBaseTableAnnotation;
@@ -33,7 +32,6 @@ import org.eclipse.jpt.core.utility.jdt.DeclarationAnnotationElementAdapter;
import org.eclipse.jpt.core.utility.jdt.IndexedDeclarationAnnotationAdapter;
import org.eclipse.jpt.utility.internal.CollectionTools;
import org.eclipse.jpt.utility.internal.StringTools;
-import org.eclipse.jpt.utility.internal.iterables.LiveCloneIterable;
import org.eclipse.jpt.utility.internal.iterators.CloneListIterator;
/**
@@ -109,8 +107,8 @@ public final class SourceCollectionTable2_0Annotation
return new CloneListIterator<JoinColumnAnnotation>(this.joinColumns);
}
- Iterable<NestableJoinColumnAnnotation> getNestableJoinColumns() {
- return new LiveCloneIterable<NestableJoinColumnAnnotation>(this.joinColumns);
+ ListIterator<NestableJoinColumnAnnotation> nestableJoinColumns() {
+ return new CloneListIterator<NestableJoinColumnAnnotation>(this.joinColumns);
}
public int joinColumnsSize() {
@@ -129,23 +127,12 @@ public final class SourceCollectionTable2_0Annotation
return (NestableJoinColumnAnnotation) AnnotationContainerTools.addNestedAnnotation(index, this.joinColumnsContainer);
}
- NestableJoinColumnAnnotation addJoinColumn_() {
- return this.addJoinColumn_(this.joinColumns.size());
- }
-
- private NestableJoinColumnAnnotation addJoinColumn_(int index) {
- NestableJoinColumnAnnotation joinColumn = this.buildJoinColumn(index);
+ NestableJoinColumnAnnotation addJoinColumnInternal() {
+ NestableJoinColumnAnnotation joinColumn = this.buildJoinColumn(this.joinColumns.size());
this.joinColumns.add(joinColumn);
return joinColumn;
}
- void syncAddJoinColumn(Annotation astAnnotation) {
- int index = this.joinColumns.size();
- NestableJoinColumnAnnotation joinColumn = this.addJoinColumn_(index);
- joinColumn.initialize((CompilationUnit) astAnnotation.getRoot());
- this.fireItemAdded(JOIN_COLUMNS_LIST, index, joinColumn);
- }
-
private NestableJoinColumnAnnotation buildJoinColumn(int index) {
return new SourceJoinColumnAnnotation(this, this.member, buildJoinColumnAnnotationAdapter(index));
}
@@ -162,32 +149,45 @@ public final class SourceCollectionTable2_0Annotation
AnnotationContainerTools.moveNestedAnnotation(targetIndex, sourceIndex, this.joinColumnsContainer);
}
- NestableJoinColumnAnnotation moveJoinColumn_(int targetIndex, int sourceIndex) {
+ NestableJoinColumnAnnotation moveJoinColumnInternal(int targetIndex, int sourceIndex) {
return CollectionTools.move(this.joinColumns, targetIndex, sourceIndex).get(targetIndex);
}
+ void joinColumnMoved(int targetIndex, int sourceIndex) {
+ this.fireItemMoved(JOIN_COLUMNS_LIST, targetIndex, sourceIndex);
+ }
+
public void removeJoinColumn(int index) {
AnnotationContainerTools.removeNestedAnnotation(index, this.joinColumnsContainer);
}
- NestableJoinColumnAnnotation removeJoinColumn_(int index) {
+ NestableJoinColumnAnnotation removeJoinColumnInternal(int index) {
return this.joinColumns.remove(index);
}
- void syncRemoveJoinColumns(int index) {
- this.removeItemsFromList(index, this.joinColumns, JOIN_COLUMNS_LIST);
+ void joinColumnRemoved(int index, NestableJoinColumnAnnotation joinColumn) {
+ this.fireItemRemoved(JOIN_COLUMNS_LIST, index, joinColumn);
+ }
+
+ public JoinColumnAnnotation initializeJoinColumns() {
+ return this.addJoinColumnInternal();
}
// ********** annotation containers **********
+
/**
* adapt the AnnotationContainer interface to the collection table's join columns
*/
class JoinColumnsAnnotationContainer
implements AnnotationContainer<NestableJoinColumnAnnotation>
{
- public org.eclipse.jdt.core.dom.Annotation getAstAnnotation(CompilationUnit astRoot) {
+ public String getContainerAnnotationName() {
+ return SourceCollectionTable2_0Annotation.this.getAnnotationName();
+ }
+
+ public org.eclipse.jdt.core.dom.Annotation getContainerAstAnnotation(CompilationUnit astRoot) {
return SourceCollectionTable2_0Annotation.this.getAstAnnotation(astRoot);
}
@@ -195,36 +195,40 @@ public final class SourceCollectionTable2_0Annotation
return JPA2_0.COLLECTION_TABLE__JOIN_COLUMNS;
}
- public String getNestedAnnotationName() {
+ public String getNestableAnnotationName() {
return JoinColumnAnnotation.ANNOTATION_NAME;
}
- public Iterable<NestableJoinColumnAnnotation> getNestedAnnotations() {
- return SourceCollectionTable2_0Annotation.this.getNestableJoinColumns();
+ public ListIterator<NestableJoinColumnAnnotation> nestedAnnotations() {
+ return SourceCollectionTable2_0Annotation.this.nestableJoinColumns();
}
- public int getNestedAnnotationsSize() {
+ public int nestedAnnotationsSize() {
return SourceCollectionTable2_0Annotation.this.joinColumnsSize();
}
- public NestableJoinColumnAnnotation addNestedAnnotation() {
- return SourceCollectionTable2_0Annotation.this.addJoinColumn_();
+ public NestableJoinColumnAnnotation addNestedAnnotationInternal() {
+ return SourceCollectionTable2_0Annotation.this.addJoinColumnInternal();
+ }
+
+ public void nestedAnnotationAdded(int index, NestableJoinColumnAnnotation nestedAnnotation) {
+ SourceCollectionTable2_0Annotation.this.joinColumnAdded(index, nestedAnnotation);
}
- public void syncAddNestedAnnotation(Annotation astAnnotation) {
- SourceCollectionTable2_0Annotation.this.syncAddJoinColumn(astAnnotation);
+ public NestableJoinColumnAnnotation moveNestedAnnotationInternal(int targetIndex, int sourceIndex) {
+ return SourceCollectionTable2_0Annotation.this.moveJoinColumnInternal(targetIndex, sourceIndex);
}
- public NestableJoinColumnAnnotation moveNestedAnnotation(int targetIndex, int sourceIndex) {
- return SourceCollectionTable2_0Annotation.this.moveJoinColumn_(targetIndex, sourceIndex);
+ public void nestedAnnotationMoved(int targetIndex, int sourceIndex) {
+ SourceCollectionTable2_0Annotation.this.joinColumnMoved(targetIndex, sourceIndex);
}
- public NestableJoinColumnAnnotation removeNestedAnnotation(int index) {
- return SourceCollectionTable2_0Annotation.this.removeJoinColumn_(index);
+ public NestableJoinColumnAnnotation removeNestedAnnotationInternal(int index) {
+ return SourceCollectionTable2_0Annotation.this.removeJoinColumnInternal(index);
}
- public void syncRemoveNestedAnnotations(int index) {
- SourceCollectionTable2_0Annotation.this.syncRemoveJoinColumns(index);
+ public void nestedAnnotationRemoved(int index, NestableJoinColumnAnnotation nestedAnnotation) {
+ SourceCollectionTable2_0Annotation.this.joinColumnRemoved(index, nestedAnnotation);
}
@Override

Back to the top