summaryrefslogtreecommitdiffstats
path: root/src/uml/qobjects/qumlincludeobject_p.h
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2013-10-07 09:36:50 -0300
committerSandro S. Andrade <sandroandrade@kde.org>2013-10-07 14:34:31 +0200
commit5e4a780b40543fa12d6d9607e3193fb111c5ab84 (patch)
treeeb747784d9f3319d6ac7954eea269614aaad9277 /src/uml/qobjects/qumlincludeobject_p.h
parent3031fe1254052bdeffec90ca76e2f3649a971ae7 (diff)
Improve property metadata information
Change-Id: Ia9a7db26b2e7b8696aa7b82aed93c0fa6ebad8ce Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qobjects/qumlincludeobject_p.h')
-rw-r--r--src/uml/qobjects/qumlincludeobject_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/uml/qobjects/qumlincludeobject_p.h b/src/uml/qobjects/qumlincludeobject_p.h
index 4c6cde81..144b3499 100644
--- a/src/uml/qobjects/qumlincludeobject_p.h
+++ b/src/uml/qobjects/qumlincludeobject_p.h
@@ -72,15 +72,15 @@ class Q_UML_EXPORT QUmlIncludeObject : public QObject
// Properties [NamedElement]
Q_PROPERTY(QSet<QObject *> clientDependency READ clientDependencies)
- Q_PROPERTY(QString name READ name)
- Q_PROPERTY(QObject * nameExpression READ nameExpression)
+ Q_PROPERTY(QString name READ name WRITE setName)
+ Q_PROPERTY(QObject * nameExpression READ nameExpression WRITE setNameExpression)
Q_PROPERTY(QObject * namespace_ READ namespace_)
Q_PROPERTY(QString qualifiedName READ qualifiedName STORED false)
- Q_PROPERTY(QtUml::VisibilityKind visibility READ visibility)
+ Q_PROPERTY(QtUml::VisibilityKind visibility READ visibility WRITE setVisibility)
// Properties [Include]
- Q_PROPERTY(QObject * addition READ addition)
- Q_PROPERTY(QObject * includingCase READ includingCase)
+ Q_PROPERTY(QObject * addition READ addition WRITE setAddition)
+ Q_PROPERTY(QObject * includingCase READ includingCase WRITE setIncludingCase)
public:
Q_INVOKABLE explicit QUmlIncludeObject(QUmlInclude *qModelingObject);