Uses of Interface
de.mid.innovator.srv2api.icw2db.DBForeignKey
-
Packages that use DBForeignKey Package Description de.mid.innovator.srv2api.icw2db The DB package (specialization of the IM package) describes the concepts needed for modeling a relational database. -
-
Uses of DBForeignKey in de.mid.innovator.srv2api.icw2db
Fields in de.mid.innovator.srv2api.icw2db with type parameters of type DBForeignKey Modifier and Type Field Description java.util.List<DBForeignKey>
ARG_DBMergeToUnique. seqForeign
foreign keysMethods in de.mid.innovator.srv2api.icw2db that return DBForeignKey Modifier and Type Method Description static DBForeignKey
DBForeignKeyHelper. create(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer, ELElement ohRequirement)
Create a new Foreign Key (of Table) with template and container with requirement.static DBForeignKey
DBForeignKeyHelper. create(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer, ELElement ohRequirement)
Create a new Foreign Key (of Table) with stereotype and container with requirement.static DBForeignKey
DBForeignKeyHelper. createAndMaintain(SrvContext srvCtx, MMCreateTemplate ohTemplate, ELContainerAble ohContainer, ELElement ohRequirement)
Create a new Foreign Key (of Table) with template and container with requirement.static DBForeignKey
DBForeignKeyHelper. createAndMaintain(SrvContext srvCtx, MMStereotype ohStereotype, ELContainerAble ohContainer, ELElement ohRequirement)
Create a new Foreign Key (of Table) with stereotype and container with requirement.DBForeignKey
DBTable. getMaxOneForeignKey()
Gets theDBForeignKey
which is maximum one.Methods in de.mid.innovator.srv2api.icw2db that return types with arguments of type DBForeignKey Modifier and Type Method Description static java.util.List<DBForeignKey>
DBForeignKeyHelper. createByER(SrvContext srvCtx, ELContainerAble ohDBElement, MENamedElement ohERElement)
This method creates (if possible) aDBForeignKey
for the givenERForeignKey
(ER element) in the givenDBTable
(DB element).java.util.List<DBForeignKey>
DBTableColumn. getDBForeignKey(K_CONTROL_OPTION... behaviourFlags)
java.util.List<DBForeignKey>
DBTable. getElementExistentialDependencyIn(K_CONTROL_OPTION... behaviourFlags)
Gets the not null foreign keys of this thisDBTable
.java.util.List<DBForeignKey>
DBTable. getElementExistentialDependencyIn(MMStereotype stereotype, K_CONTROL_OPTION... behaviourFlags)
The method calls getElementExistentialDependencyIn and filters its return values according to the given stereotype value.java.util.List<DBForeignKey>
DBTable. getElementExistentialDependencyOut(K_CONTROL_OPTION... behaviourFlags)
java.util.List<DBForeignKey>
DBTable. getElementExistentialDependencyOut(MMStereotype stereotype, K_CONTROL_OPTION... behaviourFlags)
The method calls getElementExistentialDependencyOut and filters its return values according to the given stereotype value.java.util.List<DBForeignKey>
DBMergedInstance. getForeignKey()
List of all foreign keys assigned to thisDBMergedInstance
.java.util.List<DBForeignKey>
DBTable. getOwnedForeignKey(K_CONTROL_OPTION... behaviourFlags)
List of foreign keys of thisDBTable
.java.util.List<DBForeignKey>
DBSiblingConstraint. getSiblingForeignKeys(K_CONTROL_OPTION... behaviourFlags)
Returns the list of all sibling foreign keys assigned to thisDBSiblingConstraint
.java.util.List<DBForeignKey>
DBSiblingConstraint. getSiblingForeignKeys(MMStereotype stereotype, K_CONTROL_OPTION... behaviourFlags)
The method calls getSiblingForeignKeys and filters its return values according to the given stereotype value.Method parameters in de.mid.innovator.srv2api.icw2db with type arguments of type DBForeignKey Modifier and Type Method Description static java.util.List<DBTable>
DBForeignKeyHelper. mergeToUnique(SrvContext srvCtx, java.util.List<? extends DBForeignKey> seqForeign, java.util.List<java.lang.Integer> seqCard)
Merges theDBTable
of the selectedDBForeignKey
into theDBTable
which contains the correspondingDBUniqueKey
.
This action creates aDBMergedTable
in the modified table.void
DBMergedInstance. setForeignKey(java.util.List<? extends DBForeignKey> values)
Set the value of Foreign Key ForeignKey.Constructor parameters in de.mid.innovator.srv2api.icw2db with type arguments of type DBForeignKey Constructor Description ARG_DBMergeToUnique(java.util.List<DBForeignKey> seqForeign, java.util.List<java.lang.Integer> seqCard)
-