summaryrefslogtreecommitdiffstats
path: root/src/uml/qumlactionexecutionspecification.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uml/qumlactionexecutionspecification.h')
-rw-r--r--src/uml/qumlactionexecutionspecification.h120
1 files changed, 10 insertions, 110 deletions
diff --git a/src/uml/qumlactionexecutionspecification.h b/src/uml/qumlactionexecutionspecification.h
index 4d901fa9..025a7f28 100644
--- a/src/uml/qumlactionexecutionspecification.h
+++ b/src/uml/qumlactionexecutionspecification.h
@@ -43,10 +43,8 @@
#include <QtUml/QtUmlGlobal>
-#include <QtCore/QObject>
-#include "private/umlactionexecutionspecification_p.h"
+#include <QtUml/QUmlExecutionSpecification>
-#include <QtUml/QtUmlNamespace>
QT_BEGIN_HEADER
@@ -55,122 +53,24 @@ QT_BEGIN_NAMESPACE
QT_MODULE(QtUml)
class QUmlAction;
-class QUmlComment;
-class QUmlDependency;
-class QUmlElement;
-class QUmlGeneralOrdering;
-class QUmlInteraction;
-class QUmlInteractionOperand;
-class QUmlLifeline;
-class QUmlNamedElement;
-class QUmlNamespace;
-class QUmlOccurrenceSpecification;
-class QUmlPackage;
-class QUmlStringExpression;
-class Q_UML_EXPORT QUmlActionExecutionSpecification : public QObject, public UmlActionExecutionSpecification
+class Q_UML_EXPORT QUmlActionExecutionSpecification : public QUmlExecutionSpecification
{
- Q_OBJECT
-
- // Properties [Element]
- Q_PROPERTY(QSet<QUmlComment *> ownedComment READ ownedComment)
- Q_PROPERTY(QSet<QUmlElement *> ownedElement READ ownedElement)
- Q_PROPERTY(QUmlElement * owner READ owner)
-
- // Properties [NamedElement]
- Q_PROPERTY(QSet<QUmlDependency *> clientDependency READ clientDependency)
- Q_PROPERTY(QString name READ name)
- Q_PROPERTY(QUmlStringExpression * nameExpression READ nameExpression)
- Q_PROPERTY(QUmlNamespace * namespace_ READ namespace_)
- Q_PROPERTY(QString qualifiedName READ qualifiedName)
- Q_PROPERTY(QtUml::VisibilityKind visibility READ visibility)
-
- // Properties [InteractionFragment]
- Q_PROPERTY(QSet<QUmlLifeline *> covered READ covered)
- Q_PROPERTY(QUmlInteraction * enclosingInteraction READ enclosingInteraction)
- Q_PROPERTY(QUmlInteractionOperand * enclosingOperand READ enclosingOperand)
- Q_PROPERTY(QSet<QUmlGeneralOrdering *> generalOrdering READ generalOrdering)
-
- // Properties [ExecutionSpecification]
- Q_PROPERTY(QUmlOccurrenceSpecification * finish READ finish)
- Q_PROPERTY(QUmlOccurrenceSpecification * start READ start)
-
- // Properties [ActionExecutionSpecification]
- Q_PROPERTY(QUmlAction * action READ action)
-
public:
- Q_INVOKABLE explicit QUmlActionExecutionSpecification(QObject *parent = 0);
-
- // Owned attributes [Element]
- Q_INVOKABLE const QSet<QUmlComment *> ownedComment() const;
- Q_INVOKABLE const QSet<QUmlElement *> ownedElement() const;
- Q_INVOKABLE QUmlElement *owner() const;
-
- // Owned attributes [NamedElement]
- Q_INVOKABLE const QSet<QUmlDependency *> clientDependency() const;
- Q_INVOKABLE QString name() const;
- Q_INVOKABLE QUmlStringExpression *nameExpression() const;
- Q_INVOKABLE QUmlNamespace *namespace_() const;
- Q_INVOKABLE QString qualifiedName() const;
- Q_INVOKABLE QtUml::VisibilityKind visibility() const;
-
- // Owned attributes [InteractionFragment]
- Q_INVOKABLE const QSet<QUmlLifeline *> covered() const;
- Q_INVOKABLE QUmlInteraction *enclosingInteraction() const;
- Q_INVOKABLE QUmlInteractionOperand *enclosingOperand() const;
- Q_INVOKABLE const QSet<QUmlGeneralOrdering *> generalOrdering() const;
-
- // Owned attributes [ExecutionSpecification]
- Q_INVOKABLE QUmlOccurrenceSpecification *finish() const;
- Q_INVOKABLE QUmlOccurrenceSpecification *start() const;
+ explicit QUmlActionExecutionSpecification(bool createQObject = true);
+ virtual ~QUmlActionExecutionSpecification();
- // Owned attributes [ActionExecutionSpecification]
- Q_INVOKABLE QUmlAction *action() const;
-
- // Operations [Element]
- Q_INVOKABLE QSet<QUmlElement *> allOwnedElements() const;
- Q_INVOKABLE bool mustBeOwned() const;
-
- // Operations [NamedElement]
- Q_INVOKABLE QList<QUmlNamespace *> allNamespaces() const;
- Q_INVOKABLE QSet<QUmlPackage *> allOwningPackages() const;
- Q_INVOKABLE bool isDistinguishableFrom(QUmlNamedElement *n, QUmlNamespace *ns) const;
- Q_INVOKABLE QString separator() const;
-
-public Q_SLOTS:
-
- // Slots for owned attributes [Element]
- void addOwnedComment(UmlComment *ownedComment);
- void removeOwnedComment(UmlComment *ownedComment);
-
- // Slots for owned attributes [NamedElement]
- void addClientDependency(UmlDependency *clientDependency);
- void removeClientDependency(UmlDependency *clientDependency);
- void setName(QString name);
- void setNameExpression(QUmlStringExpression *nameExpression);
- void setVisibility(QtUml::VisibilityKind visibility);
-
- // Slots for owned attributes [InteractionFragment]
- void addCovered(UmlLifeline *covered);
- void removeCovered(UmlLifeline *covered);
- void setEnclosingInteraction(QUmlInteraction *enclosingInteraction);
- void setEnclosingOperand(QUmlInteractionOperand *enclosingOperand);
- void addGeneralOrdering(UmlGeneralOrdering *generalOrdering);
- void removeGeneralOrdering(UmlGeneralOrdering *generalOrdering);
-
- // Slots for owned attributes [ExecutionSpecification]
- void setFinish(QUmlOccurrenceSpecification *finish);
- void setStart(QUmlOccurrenceSpecification *start);
-
- // Slots for owned attributes [ActionExecutionSpecification]
+ // Owned attributes
+ QUmlAction *action() const;
void setAction(QUmlAction *action);
+
+protected:
+ QUmlAction *_action;
};
QT_END_NAMESPACE
-Q_DECLARE_METATYPE(QUmlActionExecutionSpecification *)
-Q_DECLARE_METATYPE(QList<QUmlActionExecutionSpecification *> *)
-Q_DECLARE_METATYPE(QSet<QUmlActionExecutionSpecification *> *)
+Q_DECLARE_METATYPE(QT_PREPEND_NAMESPACE(QUmlActionExecutionSpecification) *)
QT_END_HEADER