Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 59972c8c324ea23bd85dd0167b2967c20a9cc174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.eclipse.jpt.jpadiagrameditor.ui.internal.relations;

import org.eclipse.graphiti.mm.pictograms.Connection;
import org.eclipse.jpt.jpa.core.context.java.JavaPersistentType;
import org.eclipse.jpt.jpadiagrameditor.ui.internal.provider.IJPAEditorFeatureProvider;

public class HasCollectionReferenceRelation extends HasReferanceRelation{

	public HasCollectionReferenceRelation(JavaPersistentType embeddingEntity,
			JavaPersistentType embeddable) {
		super(embeddingEntity, embeddable);
	}
	
	public HasCollectionReferenceRelation(IJPAEditorFeatureProvider fp,
			Connection conn) {
		super(fp, conn);
	}

	@Override
	public HasReferenceType getReferenceType() {
		return HasReferenceType.COLLECTION;
	}

}

Back to the top