SMACS

smacs.load.mapping
Interface DbMappingDistinct

All Known Implementing Classes:
DbMappingDistinctNode

public interface DbMappingDistinct

representation of a distinct marker. The target inserts with that marker need to be assembled for collective handling. An implementation has to accept target insert references and store them for evalutation. There may be multiple distinct marks that each have a different name.

See Also:
DbMappingDistinctList

Method Summary
 void addTargetInsert(DbMappingTargetInsert done)
          add target insert reference.
 String getTargetTableName()
          get distinct name for implicit distincts.
 boolean isDistinctSet()
          get distinct flavour.
 

Method Detail

addTargetInsert

public void addTargetInsert(DbMappingTargetInsert done)
add target insert reference. for implicit distinct handling each target has the same target table name.


getTargetTableName

public String getTargetTableName()
get distinct name for implicit distincts. for implicit distinct handling each target has the same target table name.


isDistinctSet

public boolean isDistinctSet()
get distinct flavour.


SMACS