Projekt

Allgemein

Profil

Herunterladen als
Herunterladen (1,65 KB) Statistiken
| Zweig: | Revision:
/*
* Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/

#include "join.h"
using namespace CuteEntityManager;
Join::Join() {

}

Join::Join(QString foreignTable, QString condition, QString type) {
this->foreignTable = foreignTable;
this->condition = Condition(condition);
this->type = type;
}

Join::Join(QString foreignTable, Condition condition, QString type) {
this->foreignTable = foreignTable;
this->condition = condition;
this->type = type;
}

QString Join::getType() const {
return type;
}

void Join::setType(const QString &value) {
type = value;
}

QString Join::getForeignTable() const {
return foreignTable;
}

void Join::setForeignTable(const QString &value) {
foreignTable = value;
}

Condition Join::getCondition() const {
return condition;
}

QString Join::getMainCondition() const {
auto conditions = this->condition.getConditions();
if (!conditions.isEmpty()) {
return conditions.at(0);
} else {
return "";
}
}

void Join::setCondition(const Condition &value) {
condition = value;
}

(19-19/36)