Revision e3fc2748
Von Christian Ehringfeld vor mehr als 9 Jahren hinzugefügt
| src/join.cpp | ||
|---|---|---|
|
this->type = type;
|
||
|
}
|
||
|
|
||
|
Join::Join(QString attribute) {
|
||
|
this->attribute = attribute;
|
||
|
this->type = type;
|
||
|
}
|
||
|
|
||
|
QString Join::getType() const {
|
||
|
return type;
|
||
|
}
|
||
| ... | ... | |
|
void Join::setExpression(const Expression &value) {
|
||
|
expression = value;
|
||
|
}
|
||
|
|
||
|
QString Join::getAttribute() const {
|
||
|
return attribute;
|
||
|
}
|
||
|
|
||
|
void Join::setAttribute(const QString &value) {
|
||
|
attribute = value;
|
||
|
}
|
||
|
|
||
|
QString Join::getAlias() const
|
||
|
{
|
||
|
return alias;
|
||
|
}
|
||
|
|
||
|
void Join::setAlias(const QString &value)
|
||
|
{
|
||
|
alias = value;
|
||
|
}
|
||
Auch abrufbar als: Unified diff
multiple improvements