summaryrefslogtreecommitdiffstats
path: root/examples/uml/duse-mt/src/plugins/architecturerecoverycore
diff options
context:
space:
mode:
Diffstat (limited to 'examples/uml/duse-mt/src/plugins/architecturerecoverycore')
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.json5
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.pro20
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore_dependencies.pri1
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.cpp94
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.h80
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoveryalgorithm.h66
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoverybackend.h59
-rw-r--r--examples/uml/duse-mt/src/plugins/architecturerecoverycore/imodelingnotation.h61
8 files changed, 0 insertions, 386 deletions
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.json b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.json
deleted file mode 100644
index 24b56a79..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "Category": "Architecture Recovery",
- "Vendor": "Qt Project",
- "Version": "1.0"
-}
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.pro b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.pro
deleted file mode 100644
index 3044c484..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore.pro
+++ /dev/null
@@ -1,20 +0,0 @@
-#-------------------------------------------------
-#
-# Project created by QtCreator 2013-11-03T17:38:51
-#
-#-------------------------------------------------
-
-include(../../duse-mt-plugin.pri)
-
-QT += gui widgets
-
-HEADERS += architecturerecoverycoreplugin.h \
- iarchitecturerecoverybackend.h \
- imodelingnotation.h \
- iarchitecturerecoveryalgorithm.h
-
-SOURCES += architecturerecoverycoreplugin.cpp
-
-OTHER_FILES += architecturerecoverycore.json
-
-FORMS +=
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore_dependencies.pri b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore_dependencies.pri
deleted file mode 100644
index 02a1c417..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycore_dependencies.pri
+++ /dev/null
@@ -1 +0,0 @@
-DUSEMT_PLUGIN_NAME = ArchitectureRecoveryCore
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.cpp b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.cpp
deleted file mode 100644
index 3a2b420b..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.cpp
+++ /dev/null
@@ -1,94 +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 "architecturerecoverycoreplugin.h"
-
-#include <QtCore/QDebug>
-
-#include <duseinterfaces/iplugincontroller.h>
-#include "iarchitecturerecoverybackend.h"
-
-namespace DuSE
-{
-
-ArchitectureRecoveryCorePlugin::ArchitectureRecoveryCorePlugin(QObject *parent) :
- IPlugin(parent)
-{
-}
-
-bool ArchitectureRecoveryCorePlugin::initialize()
-{
- return true;
-}
-
-void ArchitectureRecoveryCorePlugin::loadPluginsList()
-{
-}
-
-void ArchitectureRecoveryCorePlugin::loadRecoveryBackends()
-{
-}
-
-void ArchitectureRecoveryCorePlugin::loadRecoveryAlgorithms()
-{
-
-}
-
-void ArchitectureRecoveryCorePlugin::loadModelingNotations()
-{
-
-}
-
-QList<IArchitectureRecoveryBackend *> ArchitectureRecoveryCorePlugin::recoveryBackends()
-{
- return _recoveryBackends;
-}
-
-QList<IArchitectureRecoveryAlgorithm *> ArchitectureRecoveryCorePlugin::recoveryAlgorithms()
-{
- return _recoveryAlgorithms;
-}
-
-QList<IModelingNotation *> ArchitectureRecoveryCorePlugin::modelingNotations()
-{
- return _modelingNotations;
-}
-
-}
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.h b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.h
deleted file mode 100644
index df439048..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/architecturerecoverycoreplugin.h
+++ /dev/null
@@ -1,80 +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$
-**
-****************************************************************************/
-#ifndef ARCHITECTURERECOVERYCOREPLUGIN_H
-#define ARCHITECTURERECOVERYCOREPLUGIN_H
-
-#include <architecturerecoverycore/iarchitecturerecoverybackend.h>
-#include <architecturerecoverycore/iarchitecturerecoveryalgorithm.h>
-#include <architecturerecoverycore/imodelingnotation.h>
-#include <duseinterfaces/iplugin.h>
-
-namespace DuSE
-{
-
-class ArchitectureRecoveryCorePlugin : public IPlugin
-{
- Q_OBJECT
- Q_PLUGIN_METADATA(IID "org.liveblue.DuSE.IPlugin" FILE "architecturerecoverycore.json")
-
-public:
- ArchitectureRecoveryCorePlugin(QObject *parent = 0);
-
- virtual bool initialize();
-
- void loadPluginsList();
- void loadRecoveryBackends();
- void loadRecoveryAlgorithms();
- void loadModelingNotations();
- QList<IArchitectureRecoveryBackend *> recoveryBackends();
- QList<IArchitectureRecoveryAlgorithm *> recoveryAlgorithms();
- QList<IModelingNotation *> modelingNotations();
-
-private:
- QList<const QMetaObject*> _metaObjects;
- QList<IArchitectureRecoveryBackend *> _recoveryBackends;
- QList<IArchitectureRecoveryAlgorithm *> _recoveryAlgorithms;
- QList<IModelingNotation *> _modelingNotations;
-};
-
-}
-
-#endif // ARCHITECTURERECOVERYCOREPLUGIN
-
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoveryalgorithm.h b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoveryalgorithm.h
deleted file mode 100644
index 71498f4a..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoveryalgorithm.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Sandro S. Andrade <sandroandrade@kde.org>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtDuse 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$
-**
-****************************************************************************/
-#ifndef IARCHITECTURERECOVERYALGORITHM_H
-#define IARCHITECTURERECOVERYALGORITHM_H
-
-namespace DuSE
-{
-
-class IDevelopmentPlatform;
-class IModelingNotation;
-
-class IArchitectureRecoveryAlgorithm
-{
-
-public:
- virtual void run() = 0;
-
- virtual void setDevelopmentPlatform(IDevelopmentPlatform *m_developmentPlatform) = 0;
- virtual void setModelingNotation(IModelingNotation *m_modelingNotation) = 0;
-
- virtual IDevelopmentPlatform* developmentPlatform() = 0;
- virtual IModelingNotation* modelingNotation() = 0;
-};
-
-}
-
-#endif // IARCHITECTURERECOVERYALGORITHM_H
-
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoverybackend.h b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoverybackend.h
deleted file mode 100644
index 964c4de5..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/iarchitecturerecoverybackend.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Sandro S. Andrade <sandroandrade@kde.org>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtDuse 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$
-**
-****************************************************************************/
-#ifndef IARCHITECTURERECOVERYBACKEND_H
-#define IARCHITECTURERECOVERYBACKEND_H
-
-#include <QObjectList>
-#include <QString>
-
-namespace DuSE
-{
-
-class IArchitectureRecoveryBackend
-{
-public:
- virtual QObjectList components() = 0;
- virtual QObjectList connectors() = 0;
-};
-
-}
-
-#endif // IARCHITECTURERECOVERYBACKEND_H
diff --git a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/imodelingnotation.h b/examples/uml/duse-mt/src/plugins/architecturerecoverycore/imodelingnotation.h
deleted file mode 100644
index 504e1baa..00000000
--- a/examples/uml/duse-mt/src/plugins/architecturerecoverycore/imodelingnotation.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Sandro S. Andrade <sandroandrade@kde.org>
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtDuse 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$
-**
-****************************************************************************/
-#ifndef IMODELINGNOTATION_H
-#define IMODELINGNOTATION_H
-
-QT_BEGIN_NAMESPACE
-class QString;
-QT_END_NAMESPACE
-
-namespace DuSE
-{
-
-class IModelingNotation
-{
-
-public:
- virtual void generateDiagram(const QString &name) = 0;
-};
-
-}
-
-#endif // IMODELINGNOTATION_H
-