summaryrefslogtreecommitdiffstats
path: root/src/uml/internal/umlstate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uml/internal/umlstate.cpp')
-rw-r--r--src/uml/internal/umlstate.cpp486
1 files changed, 0 insertions, 486 deletions
diff --git a/src/uml/internal/umlstate.cpp b/src/uml/internal/umlstate.cpp
deleted file mode 100644
index 5790e476..00000000
--- a/src/uml/internal/umlstate.cpp
+++ /dev/null
@@ -1,486 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Sandro S. Andrade <sandroandrade@kde.org>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtUml module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-#include "umlstate_p.h"
-
-#include "private/umlbehavior_p.h"
-#include "private/umlclassifier_p.h"
-#include "private/umlconnectionpointreference_p.h"
-#include "private/umlconstraint_p.h"
-#include "private/umlpseudostate_p.h"
-#include "private/umlregion_p.h"
-#include "private/umlstatemachine_p.h"
-#include "private/umltrigger_p.h"
-
-UmlState::UmlState() :
- _doActivity(0),
- _entry(0),
- _exit(0),
- _redefinedState(0),
- _stateInvariant(0),
- _submachine(0)
-{
-}
-
-// OWNED ATTRIBUTES
-
-const QSet<UmlConnectionPointReference *> UmlState::connection() const
-{
- // This is a read-write association end
-
- return _connection;
-}
-
-void UmlState::addConnection(UmlConnectionPointReference *connection)
-{
- // This is a read-write association end
-
- if (!_connection.contains(connection)) {
- _connection.insert(connection);
-
- // Adjust subsetted properties
- addOwnedMember(connection);
-
- // Adjust opposite properties
- if (connection) {
- connection->setState(this);
- }
- }
-}
-
-void UmlState::removeConnection(UmlConnectionPointReference *connection)
-{
- // This is a read-write association end
-
- if (_connection.contains(connection)) {
- _connection.remove(connection);
-
- // Adjust subsetted properties
- removeOwnedMember(connection);
-
- // Adjust opposite properties
- if (connection) {
- connection->setState(0);
- }
- }
-}
-
-const QSet<UmlPseudostate *> UmlState::connectionPoint() const
-{
- // This is a read-write association end
-
- return _connectionPoint;
-}
-
-void UmlState::addConnectionPoint(UmlPseudostate *connectionPoint)
-{
- // This is a read-write association end
-
- if (!_connectionPoint.contains(connectionPoint)) {
- _connectionPoint.insert(connectionPoint);
-
- // Adjust subsetted properties
- addOwnedMember(connectionPoint);
-
- // Adjust opposite properties
- if (connectionPoint) {
- connectionPoint->setState(this);
- }
- }
-}
-
-void UmlState::removeConnectionPoint(UmlPseudostate *connectionPoint)
-{
- // This is a read-write association end
-
- if (_connectionPoint.contains(connectionPoint)) {
- _connectionPoint.remove(connectionPoint);
-
- // Adjust subsetted properties
- removeOwnedMember(connectionPoint);
-
- // Adjust opposite properties
- if (connectionPoint) {
- connectionPoint->setState(0);
- }
- }
-}
-
-const QSet<UmlTrigger *> UmlState::deferrableTrigger() const
-{
- // This is a read-write association end
-
- return _deferrableTrigger;
-}
-
-void UmlState::addDeferrableTrigger(UmlTrigger *deferrableTrigger)
-{
- // This is a read-write association end
-
- if (!_deferrableTrigger.contains(deferrableTrigger)) {
- _deferrableTrigger.insert(deferrableTrigger);
-
- // Adjust subsetted properties
- addOwnedElement(deferrableTrigger);
- }
-}
-
-void UmlState::removeDeferrableTrigger(UmlTrigger *deferrableTrigger)
-{
- // This is a read-write association end
-
- if (_deferrableTrigger.contains(deferrableTrigger)) {
- _deferrableTrigger.remove(deferrableTrigger);
-
- // Adjust subsetted properties
- removeOwnedElement(deferrableTrigger);
- }
-}
-
-UmlBehavior *UmlState::doActivity() const
-{
- // This is a read-write association end
-
- return _doActivity;
-}
-
-void UmlState::setDoActivity(UmlBehavior *doActivity)
-{
- // This is a read-write association end
-
- if (_doActivity != doActivity) {
- // Adjust subsetted properties
- removeOwnedElement(_doActivity);
-
- _doActivity = doActivity;
-
- // Adjust subsetted properties
- if (doActivity) {
- addOwnedElement(doActivity);
- }
- }
-}
-
-UmlBehavior *UmlState::entry() const
-{
- // This is a read-write association end
-
- return _entry;
-}
-
-void UmlState::setEntry(UmlBehavior *entry)
-{
- // This is a read-write association end
-
- if (_entry != entry) {
- // Adjust subsetted properties
- removeOwnedElement(_entry);
-
- _entry = entry;
-
- // Adjust subsetted properties
- if (entry) {
- addOwnedElement(entry);
- }
- }
-}
-
-UmlBehavior *UmlState::exit() const
-{
- // This is a read-write association end
-
- return _exit;
-}
-
-void UmlState::setExit(UmlBehavior *exit)
-{
- // This is a read-write association end
-
- if (_exit != exit) {
- // Adjust subsetted properties
- removeOwnedElement(_exit);
-
- _exit = exit;
-
- // Adjust subsetted properties
- if (exit) {
- addOwnedElement(exit);
- }
- }
-}
-
-bool UmlState::isComposite() const
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isComposite(): to be implemented (this is a derived property)");
-
- return bool();
-}
-
-void UmlState::setComposite(bool isComposite)
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isComposite(): to be implemented (this is a derived property)");
- Q_UNUSED(isComposite);
-
- if (false /* <derivedexclusion-criteria> */) {
- // <derived-code>
- }
-}
-
-bool UmlState::isOrthogonal() const
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isOrthogonal(): to be implemented (this is a derived property)");
-
- return bool();
-}
-
-void UmlState::setOrthogonal(bool isOrthogonal)
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isOrthogonal(): to be implemented (this is a derived property)");
- Q_UNUSED(isOrthogonal);
-
- if (false /* <derivedexclusion-criteria> */) {
- // <derived-code>
- }
-}
-
-bool UmlState::isSimple() const
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isSimple(): to be implemented (this is a derived property)");
-
- return bool();
-}
-
-void UmlState::setSimple(bool isSimple)
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isSimple(): to be implemented (this is a derived property)");
- Q_UNUSED(isSimple);
-
- if (false /* <derivedexclusion-criteria> */) {
- // <derived-code>
- }
-}
-
-bool UmlState::isSubmachineState() const
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isSubmachineState(): to be implemented (this is a derived property)");
-
- return bool();
-}
-
-void UmlState::setSubmachineState(bool isSubmachineState)
-{
- // This is a read-only derived property
-
- qWarning("UmlState::isSubmachineState(): to be implemented (this is a derived property)");
- Q_UNUSED(isSubmachineState);
-
- if (false /* <derivedexclusion-criteria> */) {
- // <derived-code>
- }
-}
-
-UmlState *UmlState::redefinedState() const
-{
- // This is a read-write association end
-
- return _redefinedState;
-}
-
-void UmlState::setRedefinedState(UmlState *redefinedState)
-{
- // This is a read-write association end
-
- if (_redefinedState != redefinedState) {
- // Adjust subsetted properties
- removeRedefinedElement(_redefinedState);
-
- _redefinedState = redefinedState;
-
- // Adjust subsetted properties
- if (redefinedState) {
- addRedefinedElement(redefinedState);
- }
- }
-}
-
-UmlClassifier *UmlState::redefinitionContext() const
-{
- // This is a read-only derived association end
-
- qWarning("UmlState::redefinitionContext(): to be implemented (this is a derived association end)");
-
- return 0;
-}
-
-void UmlState::setRedefinitionContext(UmlClassifier *redefinitionContext)
-{
- // This is a read-only derived association end
-
- qWarning("UmlState::redefinitionContext(): to be implemented (this is a derived association end)");
- Q_UNUSED(redefinitionContext);
-
- if (false /* <derivedexclusion-criteria> */) {
- // <derived-code>
- }
-}
-
-const QSet<UmlRegion *> UmlState::region() const
-{
- // This is a read-write association end
-
- return _region;
-}
-
-void UmlState::addRegion(UmlRegion *region)
-{
- // This is a read-write association end
-
- if (!_region.contains(region)) {
- _region.insert(region);
-
- // Adjust subsetted properties
- addOwnedMember(region);
-
- // Adjust opposite properties
- if (region) {
- region->setState(this);
- }
- }
-}
-
-void UmlState::removeRegion(UmlRegion *region)
-{
- // This is a read-write association end
-
- if (_region.contains(region)) {
- _region.remove(region);
-
- // Adjust subsetted properties
- removeOwnedMember(region);
-
- // Adjust opposite properties
- if (region) {
- region->setState(0);
- }
- }
-}
-
-UmlConstraint *UmlState::stateInvariant() const
-{
- // This is a read-write association end
-
- return _stateInvariant;
-}
-
-void UmlState::setStateInvariant(UmlConstraint *stateInvariant)
-{
- // This is a read-write association end
-
- if (_stateInvariant != stateInvariant) {
- // Adjust subsetted properties
- removeOwnedRule(_stateInvariant);
-
- _stateInvariant = stateInvariant;
-
- // Adjust subsetted properties
- if (stateInvariant) {
- addOwnedRule(stateInvariant);
- }
- }
-}
-
-UmlStateMachine *UmlState::submachine() const
-{
- // This is a read-write association end
-
- return _submachine;
-}
-
-void UmlState::setSubmachine(UmlStateMachine *submachine)
-{
- // This is a read-write association end
-
- if (_submachine != submachine) {
- _submachine = submachine;
- }
-}
-
-// OPERATIONS
-
-UmlStateMachine *UmlState::containingStateMachine(
- ) const
-{
- qWarning("UmlState::containingStateMachine(): to be implemented (operation)");
-
- return 0;
-}
-
-bool UmlState::isConsistentWith(
- UmlRedefinableElement *redefinee) const
-{
- qWarning("UmlState::isConsistentWith(): to be implemented (operation)");
-
- Q_UNUSED(redefinee);
- return bool ();
-}
-
-bool UmlState::isRedefinitionContextValid(
- UmlState *redefined) const
-{
- qWarning("UmlState::isRedefinitionContextValid(): to be implemented (operation)");
-
- Q_UNUSED(redefined);
- return bool ();
-}
-