summaryrefslogtreecommitdiffstats
path: root/src/uml/qumlobjectflow.cpp
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2013-10-09 20:19:34 -0300
committerSandro S. Andrade <sandroandrade@kde.org>2013-10-10 01:23:16 +0200
commitdc76a0dc87fe7ee0f94e96881990a4e83911fd8e (patch)
treef5b0731e183ecfe8c8d0a888a966508984d921db /src/uml/qumlobjectflow.cpp
parent01ae27fe58be35914b0c4f573782f90242a9bfd9 (diff)
Further refactoring in QtModeling (initial step)
Change-Id: Id8ca8a50edefeeb5c71206e96adbc4777eb82ccd Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qumlobjectflow.cpp')
-rw-r--r--src/uml/qumlobjectflow.cpp58
1 files changed, 30 insertions, 28 deletions
diff --git a/src/uml/qumlobjectflow.cpp b/src/uml/qumlobjectflow.cpp
index 43927e31..aafb8ed5 100644
--- a/src/uml/qumlobjectflow.cpp
+++ b/src/uml/qumlobjectflow.cpp
@@ -76,7 +76,7 @@ QUmlObjectFlow::QUmlObjectFlow(bool createQObject) :
{
if (createQObject)
_qObject = new QUmlObjectFlowObject(this);
- setClassForProperty();
+ setGroupProperties();
setPropertyData();
}
@@ -212,34 +212,36 @@ void QUmlObjectFlow::setTransformation(QUmlBehavior *transformation)
}
}
-void QUmlObjectFlow::setClassForProperty()
+void QUmlObjectFlow::setGroupProperties()
{
- _classForProperty[QStringLiteral("ownedComments")] = QStringLiteral("QUmlElement");
- _classForProperty[QStringLiteral("ownedElements")] = QStringLiteral("QUmlElement");
- _classForProperty[QStringLiteral("owner")] = QStringLiteral("QUmlElement");
- _classForProperty[QStringLiteral("clientDependencies")] = QStringLiteral("QUmlNamedElement");
- _classForProperty[QStringLiteral("name")] = QStringLiteral("QUmlNamedElement");
- _classForProperty[QStringLiteral("nameExpression")] = QStringLiteral("QUmlNamedElement");
- _classForProperty[QStringLiteral("namespace_")] = QStringLiteral("QUmlNamedElement");
- _classForProperty[QStringLiteral("qualifiedName")] = QStringLiteral("QUmlNamedElement");
- _classForProperty[QStringLiteral("visibility")] = QStringLiteral("QUmlNamedElement");
- _classForProperty[QStringLiteral("isLeaf")] = QStringLiteral("QUmlRedefinableElement");
- _classForProperty[QStringLiteral("redefinedElements")] = QStringLiteral("QUmlRedefinableElement");
- _classForProperty[QStringLiteral("redefinitionContexts")] = QStringLiteral("QUmlRedefinableElement");
- _classForProperty[QStringLiteral("activity")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("guard")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("inGroups")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("inPartitions")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("inStructuredNode")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("interrupts")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("redefinedEdges")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("source")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("target")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("weight")] = QStringLiteral("QUmlActivityEdge");
- _classForProperty[QStringLiteral("isMulticast")] = QStringLiteral("QUmlObjectFlow");
- _classForProperty[QStringLiteral("isMultireceive")] = QStringLiteral("QUmlObjectFlow");
- _classForProperty[QStringLiteral("selection")] = QStringLiteral("QUmlObjectFlow");
- _classForProperty[QStringLiteral("transformation")] = QStringLiteral("QUmlObjectFlow");
+ const QMetaObject *metaObject = _qObject->metaObject();
+
+ _groupProperties.insert(QStringLiteral("QUmlElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("ownedComments"))));
+ _groupProperties.insert(QStringLiteral("QUmlElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("ownedElements"))));
+ _groupProperties.insert(QStringLiteral("QUmlElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("owner"))));
+ _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("clientDependencies"))));
+ _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("name"))));
+ _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("nameExpression"))));
+ _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("namespace_"))));
+ _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("qualifiedName"))));
+ _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("visibility"))));
+ _groupProperties.insert(QStringLiteral("QUmlRedefinableElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("isLeaf"))));
+ _groupProperties.insert(QStringLiteral("QUmlRedefinableElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("redefinedElements"))));
+ _groupProperties.insert(QStringLiteral("QUmlRedefinableElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("redefinitionContexts"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("activity"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("guard"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("inGroups"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("inPartitions"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("inStructuredNode"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("interrupts"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("redefinedEdges"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("source"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("target"))));
+ _groupProperties.insert(QStringLiteral("QUmlActivityEdge"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("weight"))));
+ _groupProperties.insert(QStringLiteral("QUmlObjectFlow"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("isMulticast"))));
+ _groupProperties.insert(QStringLiteral("QUmlObjectFlow"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("isMultireceive"))));
+ _groupProperties.insert(QStringLiteral("QUmlObjectFlow"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("selection"))));
+ _groupProperties.insert(QStringLiteral("QUmlObjectFlow"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("transformation"))));
}
void QUmlObjectFlow::setPropertyData()