Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 91ed1164

Von Christian Ehringfeld vor fast 9 Jahren hinzugefügt

  • ID 91ed1164b3aede1175b03cf33b657887516c4b2d
  • Vorgänger 5c53ac99
  • Nachfolger e24791d7

small update

Unterschiede anzeigen:

src/relation.h
* @param mappedBy Q_PROPERTY in foreign Entity
*/
Relation(QString propertyName, RelationType type, QString mappedBy,
QString tableName = "",
CascadeType cascadeType = ALL);
QList<CascadeType> cascadeType = {ALL});
~Relation();
RelationType getType() const;
void setType(const RelationType &value);
......
QString getMappedBy() const;
void setMappedBy(const QString &value);
QString getTableName() const;
void setTableName(const QString &value);
CascadeType getCascadeType() const;
void setCascadeType(const CascadeType &value);
QList<CascadeType> getCascadeType() const;
void setCascadeType(const QList<CascadeType> &value);
protected:
QString propertyName;
QString mappedBy;
QString tableName;
RelationType type;
CascadeType cascadeType;
QList<CascadeType> cascadeType;
bool optional;
};

Auch abrufbar als: Unified diff