definition:
|
genEntityFuncDecls :: String -> Entity -> [CFuncDecl]
genEntityFuncDecls mName ent =
[genEntityDescription mName ent, genTables mName ent] ++
genColumns mName ent ++
genColumnDescriptions mName ent ++
genGetterSetters mName ent ++
genKeyTransformFuncs mName ent ++
genEntryFuncs mName ent
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Generates all function declarations for an entity.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
genEntityFuncDecls
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Database.ERD.Entity -> [AbstractCurry.Types.CFuncDecl]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|