Herunterladen als
root/src/relation.cpp @ 98b5b08d
c22391b2 | Christian Ehringfeld | /*
|
|
* 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/>.
|
|||
*/
|
|||
24c5480c | Christian Ehringfeld | #include "relation.h"
|
|
using namespace CuteEntityManager;
|
|||
Relation::Relation() {
|
|||
}
|
|||
Relation::Relation(QString propertyName, RelationType type, bool optional) {
|
|||
this->propertyName = propertyName;
|
|||
this->type = type;
|
|||
this->optional = optional;
|
|||
ba800d6d | Christian Ehringfeld | this->tableName = "";
|
|
this->cascadeType = ALL;
|
|||
}
|
|||
e0e1ead8 | Christian Ehringfeld | Relation::Relation(QString propertyName, RelationType type, QString mappedBy,
|
|
QString tableName,
|
|||
ba800d6d | Christian Ehringfeld | CascadeType cascadeType) {
|
|
this->propertyName = propertyName;
|
|||
this->type = type;
|
|||
this->mappedBy = mappedBy;
|
|||
this->optional = true;
|
|||
this->tableName = tableName;
|
|||
f4e3904b | Christian Ehringfeld | if (this->type == MANY_TO_ONE) {
|
|
this->cascadeType = ALL;
|
|||
} else {
|
|||
this->cascadeType = cascadeType;
|
|||
}
|
|||
24c5480c | Christian Ehringfeld | }
|
|
Relation::~Relation() {
|
|||
}
|
|||
RelationType Relation::getType() const {
|
|||
return type;
|
|||
}
|
|||
void Relation::setType(const RelationType &value) {
|
|||
type = value;
|
|||
}
|
|||
QString Relation::getPropertyName() const {
|
|||
return propertyName;
|
|||
}
|
|||
void Relation::setPropertyName(const QString &value) {
|
|||
propertyName = value;
|
|||
}
|
|||
bool Relation::getOptional() const {
|
|||
return optional;
|
|||
}
|
|||
void Relation::setOptional(bool value) {
|
|||
optional = value;
|
|||
}
|
|||
ba800d6d | Christian Ehringfeld | QString Relation::getMappedBy() const {
|
|
return mappedBy;
|
|||
}
|
|||
void Relation::setMappedBy(const QString &value) {
|
|||
mappedBy = value;
|
|||
}
|
|||
QString Relation::getTableName() const {
|
|||
return tableName;
|
|||
}
|
|||
void Relation::setTableName(const QString &value) {
|
|||
tableName = value;
|
|||
}
|
|||
CascadeType Relation::getCascadeType() const {
|
|||
return cascadeType;
|
|||
}
|
|||
void Relation::setCascadeType(const CascadeType &value) {
|
|||
cascadeType = value;
|
|||
}
|
|||