HHH-5879 Open Core ComponentType metamodel

Add a getter to isKey
This commit is contained in:
Emmanuel Bernard 2011-01-28 12:33:29 -06:00
parent ffd659ff77
commit 1ae42c886e
1 changed files with 4 additions and 0 deletions

View File

@ -90,6 +90,10 @@ public class ComponentType extends AbstractType implements CompositeType {
this.tuplizerMapping = metamodel.getTuplizerMapping();
}
public boolean isKey() {
return isKey;
}
public EntityModeToTuplizerMapping getTuplizerMapping() {
return tuplizerMapping;
}