summaryrefslogtreecommitdiffstats
path: root/src/uml/qobjects/qumltimeobservationobject_p.h
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2013-10-06 11:31:46 -0300
committerSandro S. Andrade <sandroandrade@kde.org>2013-10-06 16:28:28 +0200
commit3031fe1254052bdeffec90ca76e2f3649a971ae7 (patch)
tree1c53eeec8c4be183f600a8f17c7e156efa779ea1 /src/uml/qobjects/qumltimeobservationobject_p.h
parente07d31eda9cc77f50fb6dbae8905384219171332 (diff)
Use plural form for multi-valued UML metamodel properties
Change-Id: Ia8ab1c48d0fb552aca0ae729507c18b63d4c448e Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qobjects/qumltimeobservationobject_p.h')
-rw-r--r--src/uml/qobjects/qumltimeobservationobject_p.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/uml/qobjects/qumltimeobservationobject_p.h b/src/uml/qobjects/qumltimeobservationobject_p.h
index b80b8163..21f63bbc 100644
--- a/src/uml/qobjects/qumltimeobservationobject_p.h
+++ b/src/uml/qobjects/qumltimeobservationobject_p.h
@@ -59,8 +59,8 @@ class Q_UML_EXPORT QUmlTimeObservationObject : public QObject
Q_OBJECT
// Properties [Element]
- Q_PROPERTY(QSet<QObject *> ownedComment READ ownedComment)
- Q_PROPERTY(QSet<QObject *> ownedElement READ ownedElement)
+ Q_PROPERTY(QSet<QObject *> ownedComment READ ownedComments)
+ Q_PROPERTY(QSet<QObject *> ownedElement READ ownedElements)
Q_PROPERTY(QObject * owner READ owner)
// Properties [ParameterableElement]
@@ -68,7 +68,7 @@ class Q_UML_EXPORT QUmlTimeObservationObject : public QObject
Q_PROPERTY(QObject * templateParameter READ templateParameter)
// Properties [NamedElement]
- Q_PROPERTY(QSet<QObject *> clientDependency READ clientDependency)
+ Q_PROPERTY(QSet<QObject *> clientDependency READ clientDependencies)
Q_PROPERTY(QString name READ name)
Q_PROPERTY(QObject * nameExpression READ nameExpression)
Q_PROPERTY(QObject * namespace_ READ namespace_)
@@ -86,8 +86,8 @@ public:
virtual ~QUmlTimeObservationObject();
// Owned attributes [Element]
- Q_INVOKABLE const QSet<QObject *> ownedComment() const;
- Q_INVOKABLE const QSet<QObject *> ownedElement() const;
+ Q_INVOKABLE const QSet<QObject *> ownedComments() const;
+ Q_INVOKABLE const QSet<QObject *> ownedElements() const;
Q_INVOKABLE QObject *owner() const;
// Owned attributes [ParameterableElement]
@@ -95,7 +95,7 @@ public:
Q_INVOKABLE QObject *templateParameter() const;
// Owned attributes [NamedElement]
- Q_INVOKABLE const QSet<QObject *> clientDependency() const;
+ Q_INVOKABLE const QSet<QObject *> clientDependencies() const;
Q_INVOKABLE QString name() const;
Q_INVOKABLE QObject *nameExpression() const;
Q_INVOKABLE QObject *namespace_() const;