summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro S. Andrade <sandroandrade@kde.org>2013-10-13 15:59:42 -0300
committerSandro S. Andrade <sandroandrade@kde.org>2013-10-13 20:59:29 +0200
commit29c2917eae608fd1ec1f03aec39cb16c4b7b6b35 (patch)
tree6ebe11b0d36da3a68ab0f266305464e43a3c8728
parentc6b74c74c99383616a58556319fb06caa09da3a6 (diff)
Do not generate documentation tags if not available
Change-Id: I17eafecc536e4f72d8f8ef4723c6e2b0dd82d1a9 Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
-rw-r--r--scripts/templates/modulenamespace.cpp4
-rw-r--r--scripts/templates/qclass.cpp2
-rw-r--r--src/mof/qmofargument.cpp2
-rw-r--r--src/mof/qmofassociation.cpp6
-rw-r--r--src/mof/qmofbehavioralfeature.cpp2
-rw-r--r--src/mof/qmofclass.cpp8
-rw-r--r--src/mof/qmofclassifier.cpp28
-rw-r--r--src/mof/qmofdatatype.cpp2
-rw-r--r--src/mof/qmofelement.cpp8
-rw-r--r--src/mof/qmofelementimport.cpp2
-rw-r--r--src/mof/qmofenumerationliteral.cpp4
-rw-r--r--src/mof/qmofexception.cpp2
-rw-r--r--src/mof/qmofextent.cpp14
-rw-r--r--src/mof/qmoffactory.cpp12
-rw-r--r--src/mof/qmoflink.cpp6
-rw-r--r--src/mof/qmofliteralboolean.cpp4
-rw-r--r--src/mof/qmofliteralinteger.cpp4
-rw-r--r--src/mof/qmofliteralnull.cpp4
-rw-r--r--src/mof/qmofliteralreal.cpp4
-rw-r--r--src/mof/qmofliteralstring.cpp4
-rw-r--r--src/mof/qmofliteralunlimitednatural.cpp4
-rw-r--r--src/mof/qmofmultiplicityelement.cpp18
-rw-r--r--src/mof/qmofnamedelement.cpp4
-rw-r--r--src/mof/qmofnamespace.cpp12
-rw-r--r--src/mof/qmofobject.cpp14
-rw-r--r--src/mof/qmofopaqueexpression.cpp8
-rw-r--r--src/mof/qmofoperation.cpp24
-rw-r--r--src/mof/qmofpackage.cpp6
-rw-r--r--src/mof/qmofparameter.cpp4
-rw-r--r--src/mof/qmofproperty.cpp20
-rw-r--r--src/mof/qmofredefinableelement.cpp4
-rw-r--r--src/mof/qmofreflectivecollection.cpp12
-rw-r--r--src/mof/qmofreflectivesequence.cpp10
-rw-r--r--src/mof/qmoftag.cpp2
-rw-r--r--src/mof/qmoftype.cpp4
-rw-r--r--src/mof/qmofuriextent.cpp8
-rw-r--r--src/mof/qmofvaluespecification.cpp14
-rw-r--r--src/mof/qtmofnamespace.cpp20
38 files changed, 138 insertions, 172 deletions
diff --git a/scripts/templates/modulenamespace.cpp b/scripts/templates/modulenamespace.cpp
index afb68592..7d60d22d 100644
--- a/scripts/templates/modulenamespace.cpp
+++ b/scripts/templates/modulenamespace.cpp
@@ -51,8 +51,10 @@ QT_BEGIN_NAMESPACE
${enumeration.findvalue("ownedComment/body/text()")}
- [%- FOREACH literal IN enumeration.findnodes("ownedLiteral") %]
+ [%- FOREACH literal IN enumeration.findnodes("ownedLiteral") -%]
+[%- IF literal.findvalue("ownedComment/body/text()") != "" %]
\value ${enumerationName}${literal.findvalue("@name").ucfirst} ${literal.findvalue("ownedComment/body/text()")}
+[%- END -%]
[% END -%]
*/
[% END -%]
diff --git a/scripts/templates/qclass.cpp b/scripts/templates/qclass.cpp
index 6e09ef41..bc3cdf37 100644
--- a/scripts/templates/qclass.cpp
+++ b/scripts/templates/qclass.cpp
@@ -66,7 +66,7 @@
\class Q${namespace}${className}
\inmodule Qt${namespace}
-[%- IF class.findvalue("ownedComment/body/text() != "" %]
+[%- IF class.findvalue("ownedComment/body/text()") != "" %]
\brief ${class.findvalue("ownedComment/body/text()")}
[%- END %]
diff --git a/src/mof/qmofargument.cpp b/src/mof/qmofargument.cpp
index 93f91341..6b03e87d 100644
--- a/src/mof/qmofargument.cpp
+++ b/src/mof/qmofargument.cpp
@@ -48,8 +48,6 @@
\class QMofArgument
\inmodule QtMof
-
- \brief
*/
QMofArgument::QMofArgument(bool createQModelingObject) :
_value(0)
diff --git a/src/mof/qmofassociation.cpp b/src/mof/qmofassociation.cpp
index 91c4b938..2b462582 100644
--- a/src/mof/qmofassociation.cpp
+++ b/src/mof/qmofassociation.cpp
@@ -114,7 +114,7 @@ const QList<QMofType *> QMofAssociation::endTypes() const
{
// This is a read-only derived association end
- qWarning("MofAssociation::endTypes(): to be implemented (this is a derived association end)");
+ qWarning("QMofAssociation::endTypes(): to be implemented (this is a derived association end)");
return QList<QMofType *>();
}
@@ -123,7 +123,7 @@ void QMofAssociation::addEndType(QMofType *endType)
{
// This is a read-only derived association end
- qWarning("MofAssociation::addEndType(): to be implemented (this is a derived association end)");
+ qWarning("QMofAssociation::addEndType(): to be implemented (this is a derived association end)");
Q_UNUSED(endType);
if (false /* <derivedexclusion-criteria> */) {
@@ -138,7 +138,7 @@ void QMofAssociation::removeEndType(QMofType *endType)
{
// This is a read-only derived association end
- qWarning("MofAssociation::removeEndType(): to be implemented (this is a derived association end)");
+ qWarning("QMofAssociation::removeEndType(): to be implemented (this is a derived association end)");
Q_UNUSED(endType);
if (false /* <derivedexclusion-criteria> */) {
diff --git a/src/mof/qmofbehavioralfeature.cpp b/src/mof/qmofbehavioralfeature.cpp
index 1a4362c9..6d7b0431 100644
--- a/src/mof/qmofbehavioralfeature.cpp
+++ b/src/mof/qmofbehavioralfeature.cpp
@@ -164,7 +164,7 @@ void QMofBehavioralFeature::removeRaisedException(QMofType *raisedException)
*/
bool QMofBehavioralFeature::isDistinguishableFrom(QMofNamedElement *n, QMofNamespace *ns) const
{
- qWarning("MofBehavioralFeature::isDistinguishableFrom(): to be implemented (operation)");
+ qWarning("QMofBehavioralFeature::isDistinguishableFrom(): to be implemented (operation)");
Q_UNUSED(n);
Q_UNUSED(ns);
diff --git a/src/mof/qmofclass.cpp b/src/mof/qmofclass.cpp
index 8d924c0f..ca46c439 100644
--- a/src/mof/qmofclass.cpp
+++ b/src/mof/qmofclass.cpp
@@ -274,7 +274,7 @@ const QSet<QMofClass *> QMofClass::superClasses() const
{
// This is a read-write derived association end
- qWarning("MofClass::superClasses(): to be implemented (this is a derived association end)");
+ qWarning("QMofClass::superClasses(): to be implemented (this is a derived association end)");
return QSet<QMofClass *>();
}
@@ -283,7 +283,7 @@ void QMofClass::addSuperClass(QMofClass *superClass)
{
// This is a read-write derived association end
- qWarning("MofClass::addSuperClass(): to be implemented (this is a derived association end)");
+ qWarning("QMofClass::addSuperClass(): to be implemented (this is a derived association end)");
Q_UNUSED(superClass);
if (false /* <derivedexclusion-criteria> */) {
@@ -295,7 +295,7 @@ void QMofClass::removeSuperClass(QMofClass *superClass)
{
// This is a read-write derived association end
- qWarning("MofClass::removeSuperClass(): to be implemented (this is a derived association end)");
+ qWarning("QMofClass::removeSuperClass(): to be implemented (this is a derived association end)");
Q_UNUSED(superClass);
if (false /* <derivedexclusion-criteria> */) {
@@ -310,7 +310,7 @@ void QMofClass::removeSuperClass(QMofClass *superClass)
*/
QSet<QMofNamedElement *> QMofClass::inherit(QSet<QMofNamedElement *> inhs) const
{
- qWarning("MofClass::inherit(): to be implemented (operation)");
+ qWarning("QMofClass::inherit(): to be implemented (operation)");
Q_UNUSED(inhs);
return QSet<QMofNamedElement *> ();
diff --git a/src/mof/qmofclassifier.cpp b/src/mof/qmofclassifier.cpp
index d228947d..508f689b 100644
--- a/src/mof/qmofclassifier.cpp
+++ b/src/mof/qmofclassifier.cpp
@@ -183,7 +183,7 @@ const QSet<QMofClassifier *> QMofClassifier::generals() const
{
// This is a read-write derived association end
- qWarning("MofClassifier::generals(): to be implemented (this is a derived association end)");
+ qWarning("QMofClassifier::generals(): to be implemented (this is a derived association end)");
return QSet<QMofClassifier *>();
}
@@ -192,7 +192,7 @@ void QMofClassifier::addGeneral(QMofClassifier *general)
{
// This is a read-write derived association end
- qWarning("MofClassifier::addGeneral(): to be implemented (this is a derived association end)");
+ qWarning("QMofClassifier::addGeneral(): to be implemented (this is a derived association end)");
Q_UNUSED(general);
if (false /* <derivedexclusion-criteria> */) {
@@ -204,7 +204,7 @@ void QMofClassifier::removeGeneral(QMofClassifier *general)
{
// This is a read-write derived association end
- qWarning("MofClassifier::removeGeneral(): to be implemented (this is a derived association end)");
+ qWarning("QMofClassifier::removeGeneral(): to be implemented (this is a derived association end)");
Q_UNUSED(general);
if (false /* <derivedexclusion-criteria> */) {
@@ -268,7 +268,7 @@ const QSet<QMofNamedElement *> QMofClassifier::inheritedMembers() const
{
// This is a read-only derived association end
- qWarning("MofClassifier::inheritedMembers(): to be implemented (this is a derived association end)");
+ qWarning("QMofClassifier::inheritedMembers(): to be implemented (this is a derived association end)");
return QSet<QMofNamedElement *>();
}
@@ -277,7 +277,7 @@ void QMofClassifier::addInheritedMember(QMofNamedElement *inheritedMember)
{
// This is a read-only derived association end
- qWarning("MofClassifier::addInheritedMember(): to be implemented (this is a derived association end)");
+ qWarning("QMofClassifier::addInheritedMember(): to be implemented (this is a derived association end)");
Q_UNUSED(inheritedMember);
if (false /* <derivedexclusion-criteria> */) {
@@ -292,7 +292,7 @@ void QMofClassifier::removeInheritedMember(QMofNamedElement *inheritedMember)
{
// This is a read-only derived association end
- qWarning("MofClassifier::removeInheritedMember(): to be implemented (this is a derived association end)");
+ qWarning("QMofClassifier::removeInheritedMember(): to be implemented (this is a derived association end)");
Q_UNUSED(inheritedMember);
if (false /* <derivedexclusion-criteria> */) {
@@ -386,7 +386,7 @@ void QMofClassifier::removeRedefinedClassifier(QMofClassifier *redefinedClassifi
*/
QSet<QMofFeature *> QMofClassifier::allFeatures() const
{
- qWarning("MofClassifier::allFeatures(): to be implemented (operation)");
+ qWarning("QMofClassifier::allFeatures(): to be implemented (operation)");
return QSet<QMofFeature *> ();
}
@@ -396,7 +396,7 @@ QSet<QMofFeature *> QMofClassifier::allFeatures() const
*/
QSet<QMofClassifier *> QMofClassifier::allParents() const
{
- qWarning("MofClassifier::allParents(): to be implemented (operation)");
+ qWarning("QMofClassifier::allParents(): to be implemented (operation)");
return QSet<QMofClassifier *> ();
}
@@ -406,7 +406,7 @@ QSet<QMofClassifier *> QMofClassifier::allParents() const
*/
bool QMofClassifier::conformsTo(QMofClassifier *other) const
{
- qWarning("MofClassifier::conformsTo(): to be implemented (operation)");
+ qWarning("QMofClassifier::conformsTo(): to be implemented (operation)");
Q_UNUSED(other);
return bool ();
@@ -417,7 +417,7 @@ bool QMofClassifier::conformsTo(QMofClassifier *other) const
*/
bool QMofClassifier::hasVisibilityOf(QMofNamedElement *n) const
{
- qWarning("MofClassifier::hasVisibilityOf(): to be implemented (operation)");
+ qWarning("QMofClassifier::hasVisibilityOf(): to be implemented (operation)");
Q_UNUSED(n);
return bool ();
@@ -428,7 +428,7 @@ bool QMofClassifier::hasVisibilityOf(QMofNamedElement *n) const
*/
QSet<QMofNamedElement *> QMofClassifier::inherit(QSet<QMofNamedElement *> inhs) const
{
- qWarning("MofClassifier::inherit(): to be implemented (operation)");
+ qWarning("QMofClassifier::inherit(): to be implemented (operation)");
Q_UNUSED(inhs);
return QSet<QMofNamedElement *> ();
@@ -439,7 +439,7 @@ QSet<QMofNamedElement *> QMofClassifier::inherit(QSet<QMofNamedElement *> inhs)
*/
QSet<QMofNamedElement *> QMofClassifier::inheritableMembers(QMofClassifier *c) const
{
- qWarning("MofClassifier::inheritableMembers(): to be implemented (operation)");
+ qWarning("QMofClassifier::inheritableMembers(): to be implemented (operation)");
Q_UNUSED(c);
return QSet<QMofNamedElement *> ();
@@ -450,7 +450,7 @@ QSet<QMofNamedElement *> QMofClassifier::inheritableMembers(QMofClassifier *c) c
*/
bool QMofClassifier::maySpecializeType(QMofClassifier *c) const
{
- qWarning("MofClassifier::maySpecializeType(): to be implemented (operation)");
+ qWarning("QMofClassifier::maySpecializeType(): to be implemented (operation)");
Q_UNUSED(c);
return bool ();
@@ -461,7 +461,7 @@ bool QMofClassifier::maySpecializeType(QMofClassifier *c) const
*/
QSet<QMofClassifier *> QMofClassifier::parents() const
{
- qWarning("MofClassifier::parents(): to be implemented (operation)");
+ qWarning("QMofClassifier::parents(): to be implemented (operation)");
return QSet<QMofClassifier *> ();
}
diff --git a/src/mof/qmofdatatype.cpp b/src/mof/qmofdatatype.cpp
index 344528b1..7e4a1063 100644
--- a/src/mof/qmofdatatype.cpp
+++ b/src/mof/qmofdatatype.cpp
@@ -213,7 +213,7 @@ void QMofDataType::removeOwnedOperation(QMofOperation *ownedOperation)
*/
QSet<QMofNamedElement *> QMofDataType::inherit(QSet<QMofNamedElement *> inhs) const
{
- qWarning("MofDataType::inherit(): to be implemented (operation)");
+ qWarning("QMofDataType::inherit(): to be implemented (operation)");
Q_UNUSED(inhs);
return QSet<QMofNamedElement *> ();
diff --git a/src/mof/qmofelement.cpp b/src/mof/qmofelement.cpp
index 6e818772..8b497756 100644
--- a/src/mof/qmofelement.cpp
+++ b/src/mof/qmofelement.cpp
@@ -181,21 +181,21 @@ bool QMofElement::mustBeOwned() const
QMofClass *QMofElement::getMetaClass() const
{
- qWarning("MofElement::getMetaClass(): to be implemented (operation)");
+ qWarning("QMofElement::getMetaClass(): to be implemented (operation)");
return 0;
}
QMofElement *QMofElement::container() const
{
- qWarning("MofElement::container(): to be implemented (operation)");
+ qWarning("QMofElement::container(): to be implemented (operation)");
return 0;
}
bool QMofElement::isInstanceOfType(QMofClass *type, bool includesSubtypes) const
{
- qWarning("MofElement::isInstanceOfType(): to be implemented (operation)");
+ qWarning("QMofElement::isInstanceOfType(): to be implemented (operation)");
Q_UNUSED(type);
Q_UNUSED(includesSubtypes);
@@ -204,7 +204,7 @@ bool QMofElement::isInstanceOfType(QMofClass *type, bool includesSubtypes) const
void QMofElement::delete_()
{
- qWarning("MofElement::delete(): to be implemented (operation)");
+ qWarning("QMofElement::delete(): to be implemented (operation)");
}
diff --git a/src/mof/qmofelementimport.cpp b/src/mof/qmofelementimport.cpp
index a85cc067..739aaaf1 100644
--- a/src/mof/qmofelementimport.cpp
+++ b/src/mof/qmofelementimport.cpp
@@ -185,7 +185,7 @@ void QMofElementImport::setVisibility(QtMof::VisibilityKind visibility)
*/
QString QMofElementImport::getName() const
{
- qWarning("MofElementImport::getName(): to be implemented (operation)");
+ qWarning("QMofElementImport::getName(): to be implemented (operation)");
return QString ();
}
diff --git a/src/mof/qmofenumerationliteral.cpp b/src/mof/qmofenumerationliteral.cpp
index ddc20807..f603a846 100644
--- a/src/mof/qmofenumerationliteral.cpp
+++ b/src/mof/qmofenumerationliteral.cpp
@@ -92,7 +92,7 @@ QMofEnumeration *QMofEnumerationLiteral::classifier() const
{
// This is a read-only derived association end
- qWarning("MofEnumerationLiteral::classifier(): to be implemented (this is a derived association end)");
+ qWarning("QMofEnumerationLiteral::classifier(): to be implemented (this is a derived association end)");
return 0;
}
@@ -101,7 +101,7 @@ void QMofEnumerationLiteral::setClassifier(QMofEnumeration *classifier)
{
// This is a read-only derived association end
- qWarning("MofEnumerationLiteral::setClassifier(): to be implemented (this is a derived association end)");
+ qWarning("QMofEnumerationLiteral::setClassifier(): to be implemented (this is a derived association end)");
Q_UNUSED(classifier);
if (false /* <derivedexclusion-criteria> */) {
diff --git a/src/mof/qmofexception.cpp b/src/mof/qmofexception.cpp
index 44ac941e..44e29efe 100644
--- a/src/mof/qmofexception.cpp
+++ b/src/mof/qmofexception.cpp
@@ -48,8 +48,6 @@
\class QMofException
\inmodule QtMof
-
- \brief
*/
QMofException::QMofException(bool createQModelingObject) :
_objectInError(0),
diff --git a/src/mof/qmofextent.cpp b/src/mof/qmofextent.cpp
index a9d45db2..cf177299 100644
--- a/src/mof/qmofextent.cpp
+++ b/src/mof/qmofextent.cpp
@@ -52,8 +52,6 @@
\class QMofExtent
\inmodule QtMof
-
- \brief
*/
QMofExtent::QMofExtent(bool createQModelingObject) :
QMofObject(false)
@@ -72,21 +70,21 @@ QModelingElement *QMofExtent::clone() const
bool QMofExtent::useContainment() const
{
- qWarning("MofExtent::useContainment(): to be implemented (operation)");
+ qWarning("QMofExtent::useContainment(): to be implemented (operation)");
return bool ();
}
QMofReflectiveSequence *QMofExtent::elements() const
{
- qWarning("MofExtent::elements(): to be implemented (operation)");
+ qWarning("QMofExtent::elements(): to be implemented (operation)");
return 0;
}
QSet<QMofElement *> QMofExtent::elementsOfType(QMofClass *type, bool includesSubtypes) const
{
- qWarning("MofExtent::elementsOfType(): to be implemented (operation)");
+ qWarning("QMofExtent::elementsOfType(): to be implemented (operation)");
Q_UNUSED(type);
Q_UNUSED(includesSubtypes);
@@ -95,7 +93,7 @@ QSet<QMofElement *> QMofExtent::elementsOfType(QMofClass *type, bool includesSub
QSet<QMofLink *> QMofExtent::linksOfType(QMofAssociation *type) const
{
- qWarning("MofExtent::linksOfType(): to be implemented (operation)");
+ qWarning("QMofExtent::linksOfType(): to be implemented (operation)");
Q_UNUSED(type);
return QSet<QMofLink *> ();
@@ -103,7 +101,7 @@ QSet<QMofLink *> QMofExtent::linksOfType(QMofAssociation *type) const
QSet<QMofElement *> QMofExtent::linkedElements(QMofAssociation *association, QMofElement *endElement, bool end1ToEnd2Direction) const
{
- qWarning("MofExtent::linkedElements(): to be implemented (operation)");
+ qWarning("QMofExtent::linkedElements(): to be implemented (operation)");
Q_UNUSED(association);
Q_UNUSED(endElement);
@@ -113,7 +111,7 @@ QSet<QMofElement *> QMofExtent::linkedElements(QMofAssociation *association, QMo
bool QMofExtent::linkExists(QMofAssociation *association, QMofElement *firstElement, QMofElement *secondElement) const
{
- qWarning("MofExtent::linkExists(): to be implemented (operation)");
+ qWarning("QMofExtent::linkExists(): to be implemented (operation)");
Q_UNUSED(association);
Q_UNUSED(firstElement);
diff --git a/src/mof/qmoffactory.cpp b/src/mof/qmoffactory.cpp
index d3848867..5513ffd7 100644
--- a/src/mof/qmoffactory.cpp
+++ b/src/mof/qmoffactory.cpp
@@ -54,8 +54,6 @@
\class QMofFactory
\inmodule QtMof
-
- \brief
*/
QMofFactory::QMofFactory(bool createQModelingObject) :
_package(0)
@@ -97,7 +95,7 @@ void QMofFactory::setPackage(QMofPackage *package)
QMofObject *QMofFactory::createFromString(QMofDataType *dataType, QString string)
{
- qWarning("MofFactory::createFromString(): to be implemented (operation)");
+ qWarning("QMofFactory::createFromString(): to be implemented (operation)");
Q_UNUSED(dataType);
Q_UNUSED(string);
@@ -106,7 +104,7 @@ QMofObject *QMofFactory::createFromString(QMofDataType *dataType, QString string
QString QMofFactory::convertToString(QMofDataType *dataType, QMofObject *object)
{
- qWarning("MofFactory::convertToString(): to be implemented (operation)");
+ qWarning("QMofFactory::convertToString(): to be implemented (operation)");
Q_UNUSED(dataType);
Q_UNUSED(object);
@@ -115,7 +113,7 @@ QString QMofFactory::convertToString(QMofDataType *dataType, QMofObject *object)
QMofElement *QMofFactory::create(QMofClass *metaClass)
{
- qWarning("MofFactory::create(): to be implemented (operation)");
+ qWarning("QMofFactory::create(): to be implemented (operation)");
Q_UNUSED(metaClass);
return 0;
@@ -123,7 +121,7 @@ QMofElement *QMofFactory::create(QMofClass *metaClass)
QMofElement *QMofFactory::createElement(QMofClass *class_, QSet<QMofArgument *> arguments)
{
- qWarning("MofFactory::createElement(): to be implemented (operation)");
+ qWarning("QMofFactory::createElement(): to be implemented (operation)");
Q_UNUSED(class_);
Q_UNUSED(arguments);
@@ -132,7 +130,7 @@ QMofElement *QMofFactory::createElement(QMofClass *class_, QSet<QMofArgument *>
QMofLink *QMofFactory::createLink(QMofAssociation *association, QMofElement *firstElement, QMofElement *secondElement)
{
- qWarning("MofFactory::createLink(): to be implemented (operation)");
+ qWarning("QMofFactory::createLink(): to be implemented (operation)");
Q_UNUSED(association);
Q_UNUSED(firstElement);
diff --git a/src/mof/qmoflink.cpp b/src/mof/qmoflink.cpp
index 056c6f70..3c364cef 100644
--- a/src/mof/qmoflink.cpp
+++ b/src/mof/qmoflink.cpp
@@ -49,8 +49,6 @@
\class QMofLink
\inmodule QtMof
-
- \brief
*/
QMofLink::QMofLink(bool createQModelingObject) :
QMofObject(false),
@@ -137,7 +135,7 @@ void QMofLink::setAssociation(QMofAssociation *association)
bool QMofLink::equals(QMofLink *otherLink) const
{
- qWarning("MofLink::equals(): to be implemented (operation)");
+ qWarning("QMofLink::equals(): to be implemented (operation)");
Q_UNUSED(otherLink);
return bool ();
@@ -145,7 +143,7 @@ bool QMofLink::equals(QMofLink *otherLink) const
void QMofLink::delete_()
{
- qWarning("MofLink::delete(): to be implemented (operation)");
+ qWarning("QMofLink::delete(): to be implemented (operation)");
}
diff --git a/src/mof/qmofliteralboolean.cpp b/src/mof/qmofliteralboolean.cpp
index 091a040a..d41f19a6 100644
--- a/src/mof/qmofliteralboolean.cpp
+++ b/src/mof/qmofliteralboolean.cpp
@@ -105,7 +105,7 @@ void QMofLiteralBoolean::setValue(bool value)
*/
bool QMofLiteralBoolean::booleanValue() const
{
- qWarning("MofLiteralBoolean::booleanValue(): to be implemented (operation)");
+ qWarning("QMofLiteralBoolean::booleanValue(): to be implemented (operation)");
return bool ();
}
@@ -115,7 +115,7 @@ bool QMofLiteralBoolean::booleanValue() const
*/
bool QMofLiteralBoolean::isComputable() const
{
- qWarning("MofLiteralBoolean::isComputable(): to be implemented (operation)");
+ qWarning("QMofLiteralBoolean::isComputable(): to be implemented (operation)");
return bool ();
}
diff --git a/src/mof/qmofliteralinteger.cpp b/src/mof/qmofliteralinteger.cpp
index ec70ab3b..503dd3f4 100644
--- a/src/mof/qmofliteralinteger.cpp
+++ b/src/mof/qmofliteralinteger.cpp
@@ -105,7 +105,7 @@ void QMofLiteralInteger::setValue(int value)
*/
int QMofLiteralInteger::integerValue() const
{
- qWarning("MofLiteralInteger::integerValue(): to be implemented (operation)");
+ qWarning("QMofLiteralInteger::integerValue(): to be implemented (operation)");
return int ();
}
@@ -115,7 +115,7 @@ int QMofLiteralInteger::integerValue() const
*/
bool QMofLiteralInteger::isComputable() const
{
- qWarning("MofLiteralInteger::isComputable(): to be implemented (operation)");
+ qWarning("QMofLiteralInteger::isComputable(): to be implemented (operation)");
return bool ();
}
diff --git a/src/mof/qmofliteralnull.cpp b/src/mof/qmofliteralnull.cpp
index 15d9b686..e0fc9c6b 100644
--- a/src/mof/qmofliteralnull.cpp
+++ b/src/mof/qmofliteralnull.cpp
@@ -81,7 +81,7 @@ QModelingElement *QMofLiteralNull::clone() const
*/
bool QMofLiteralNull::isComputable() const
{
- qWarning("MofLiteralNull::isComputable(): to be implemented (operation)");
+ qWarning("QMofLiteralNull::isComputable(): to be implemented (operation)");
return bool ();
}
@@ -91,7 +91,7 @@ bool QMofLiteralNull::isComputable() const
*/
bool QMofLiteralNull::isNull() const
{
- qWarning("MofLiteralNull::isNull(): to be implemented (operation)");
+ qWarning("QMofLiteralNull::isNull(): to be implemented (operation)");
return bool ();
}
diff --git a/src/mof/qmofliteralreal.cpp b/src/mof/qmofliteralreal.cpp
index 319b0d4f..ecd44525 100644
--- a/src/mof/qmofliteralreal.cpp
+++ b/src/mof/qmofliteralreal.cpp
@@ -101,7 +101,7 @@ void QMofLiteralReal::setValue(double value)
*/
bool QMofLiteralReal::isComputable() const
{
- qWarning("MofLiteralReal::isComputable(): to be implemented (operation)");
+ qWarning("QMofLiteralReal::isComputable(): to be implemented (operation)");
return bool ();
}
@@ -111,7 +111,7 @@ bool QMofLiteralReal::isComputable() const
*/
double QMofLiteralReal::realValue() const
{
- qWarning("MofLiteralReal::realValue(): to be implemented (operation)");
+ qWarning("QMofLiteralReal::realValue(): to be implemented (operation)");
return double ();
}
diff --git a/src/mof/qmofliteralstring.cpp b/src/mof/qmofliteralstring.cpp
index 14dbcf93..ec75d863 100644
--- a/src/mof/qmofliteralstring.cpp
+++ b/src/mof/qmofliteralstring.cpp
@@ -103,7 +103,7 @@ void QMofLiteralString::setValue(QString value)
*/
bool QMofLiteralString::isComputable() const
{
- qWarning("MofLiteralString::isComputable(): to be implemented (operation)");
+ qWarning("QMofLiteralString::isComputable(): to be implemented (operation)");
return bool ();
}
@@ -113,7 +113,7 @@ bool QMofLiteralString::isComputable() const
*/
QString QMofLiteralString::stringValue() const
{
- qWarning("MofLiteralString::stringValue(): to be implemented (operation)");
+ qWarning("QMofLiteralString::stringValue(): to be implemented (operation)");
return QString ();
}
diff --git a/src/mof/qmofliteralunlimitednatural.cpp b/src/mof/qmofliteralunlimitednatural.cpp
index 96cbd6ee..e6d67f32 100644
--- a/src/mof/qmofliteralunlimitednatural.cpp
+++ b/src/mof/qmofliteralunlimitednatural.cpp
@@ -105,7 +105,7 @@ void QMofLiteralUnlimitedNatural::setValue(int value)
*/
bool QMofLiteralUnlimitedNatural::isComputable() const
{
- qWarning("MofLiteralUnlimitedNatural::isComputable(): to be implemented (operation)");
+ qWarning("QMofLiteralUnlimitedNatural::isComputable(): to be implemented (operation)");
return bool ();
}
@@ -115,7 +115,7 @@ bool QMofLiteralUnlimitedNatural::isComputable() const
*/
int QMofLiteralUnlimitedNatural::unlimitedValue() const
{
- qWarning("MofLiteralUnlimitedNatural::unlimitedValue(): to be implemented (operation)");
+ qWarning("QMofLiteralUnlimitedNatural::unlimitedValue(): to be implemented (operation)");
return int ();
}
diff --git a/src/mof/qmofmultiplicityelement.cpp b/src/mof/qmofmultiplicityelement.cpp
index b571ed11..694bde67 100644
--- a/src/mof/qmofmultiplicityelement.cpp
+++ b/src/mof/qmofmultiplicityelement.cpp
@@ -122,7 +122,7 @@ int QMofMultiplicityElement::lower() const
{
// This is a read-write derived property
- qWarning("MofMultiplicityElement::lower(): to be implemented (this is a derived property)");
+ qWarning("QMofMultiplicityElement::lower(): to be implemented (this is a derived property)");
return int();
}
@@ -131,7 +131,7 @@ void QMofMultiplicityElement::setLower(int lower)
{
// This is a read-write derived property
- qWarning("MofMultiplicityElement::setLower(): to be implemented (this is a derived property)");
+ qWarning("QMofMultiplicityElement::setLower(): to be implemented (this is a derived property)");
Q_UNUSED(lower);
if (false /* <derivedexclusion-criteria> */) {
@@ -176,7 +176,7 @@ int QMofMultiplicityElement::upper() const
{
// This is a read-write derived property
- qWarning("MofMultiplicityElement::upper(): to be implemented (this is a derived property)");
+ qWarning("QMofMultiplicityElement::upper(): to be implemented (this is a derived property)");
return int();
}
@@ -185,7 +185,7 @@ void QMofMultiplicityElement::setUpper(int upper)
{
// This is a read-write derived property
- qWarning("MofMultiplicityElement::setUpper(): to be implemented (this is a derived property)");
+ qWarning("QMofMultiplicityElement::setUpper(): to be implemented (this is a derived property)");
Q_UNUSED(upper);
if (false /* <derivedexclusion-criteria> */) {
@@ -230,7 +230,7 @@ void QMofMultiplicityElement::setUpperValue(QMofValueSpecification *upperValue)
*/
bool QMofMultiplicityElement::includesCardinality(int C) const
{
- qWarning("MofMultiplicityElement::includesCardinality(): to be implemented (operation)");
+ qWarning("QMofMultiplicityElement::includesCardinality(): to be implemented (operation)");
Q_UNUSED(C);
return bool ();
@@ -241,7 +241,7 @@ bool QMofMultiplicityElement::includesCardinality(int C) const
*/
bool QMofMultiplicityElement::includesMultiplicity(QMofMultiplicityElement *M) const
{
- qWarning("MofMultiplicityElement::includesMultiplicity(): to be implemented (operation)");
+ qWarning("QMofMultiplicityElement::includesMultiplicity(): to be implemented (operation)");
Q_UNUSED(M);
return bool ();
@@ -252,7 +252,7 @@ bool QMofMultiplicityElement::includesMultiplicity(QMofMultiplicityElement *M) c
*/
bool QMofMultiplicityElement::isMultivalued() const
{
- qWarning("MofMultiplicityElement::isMultivalued(): to be implemented (operation)");
+ qWarning("QMofMultiplicityElement::isMultivalued(): to be implemented (operation)");
return bool ();
}
@@ -262,7 +262,7 @@ bool QMofMultiplicityElement::isMultivalued() const
*/
int QMofMultiplicityElement::lowerBound() const
{
- qWarning("MofMultiplicityElement::lowerBound(): to be implemented (operation)");
+ qWarning("QMofMultiplicityElement::lowerBound(): to be implemented (operation)");
return int ();
}
@@ -272,7 +272,7 @@ int QMofMultiplicityElement::lowerBound() const
*/
int QMofMultiplicityElement::upperBound() const
{
- qWarning("MofMultiplicityElement::upperBound(): to be implemented (operation)");
+ qWarning("QMofMultiplicityElement::upperBound(): to be implemented (operation)");
return int ();
}
diff --git a/src/mof/qmofnamedelement.cpp b/src/mof/qmofnamedelement.cpp
index 8e44f5ce..3edb3a63 100644
--- a/src/mof/qmofnamedelement.cpp
+++ b/src/mof/qmofnamedelement.cpp
@@ -137,7 +137,7 @@ void QMofNamedElement::setQualifiedName(QString qualifiedName)
{
// This is a read-only derived property
- qWarning("MofNamedElement::setQualifiedName(): to be implemented (this is a derived property)");
+ qWarning("QMofNamedElement::setQualifiedName(): to be implemented (this is a derived property)");
Q_UNUSED(qualifiedName);
if (false /* <derivedexclusion-criteria> */) {
@@ -190,7 +190,7 @@ QList<QMofNamespace *> QMofNamedElement::allNamespaces() const
*/
bool QMofNamedElement::isDistinguishableFrom(QMofNamedElement *n, QMofNamespace *ns) const
{
- qWarning("MofNamedElement::isDistinguishableFrom(): to be implemented (operation)");
+ qWarning("QMofNamedElement::isDistinguishableFrom(): to be implemented (operation)");
Q_UNUSED(n);
Q_UNUSED(ns);
diff --git a/src/mof/qmofnamespace.cpp b/src/mof/qmofnamespace.cpp
index 9cff63d8..8f0c4274 100644
--- a/src/mof/qmofnamespace.cpp
+++ b/src/mof/qmofnamespace.cpp
@@ -148,7 +148,7 @@ void QMofNamespace::addImportedMember(QMofPackageableElement *importedMember)
{
// This is a read-only derived association end
- qWarning("MofNamespace::addImportedMember(): to be implemented (this is a derived association end)");
+ qWarning("QMofNamespace::addImportedMember(): to be implemented (this is a derived association end)");
Q_UNUSED(importedMember);
if (false /* <derivedexclusion-criteria> */) {
@@ -163,7 +163,7 @@ void QMofNamespace::removeImportedMember(QMofPackageableElement *importedMember)
{
// This is a read-only derived association end
- qWarning("MofNamespace::removeImportedMember(): to be implemented (this is a derived association end)");
+ qWarning("QMofNamespace::removeImportedMember(): to be implemented (this is a derived association end)");
Q_UNUSED(importedMember);
if (false /* <derivedexclusion-criteria> */) {
@@ -360,7 +360,7 @@ void QMofNamespace::removePackageImport(QMofPackageImport *packageImport)
*/
QSet<QMofPackageableElement *> QMofNamespace::excludeCollisions(QMofPackageableElement *imps) const
{
- qWarning("MofNamespace::excludeCollisions(): to be implemented (operation)");
+ qWarning("QMofNamespace::excludeCollisions(): to be implemented (operation)");
Q_UNUSED(imps);
return QSet<QMofPackageableElement *> ();
@@ -371,7 +371,7 @@ QSet<QMofPackageableElement *> QMofNamespace::excludeCollisions(QMofPackageableE
*/
QSet<QString> QMofNamespace::getNamesOfMember(QMofNamedElement *element) const
{
- qWarning("MofNamespace::getNamesOfMember(): to be implemented (operation)");
+ qWarning("QMofNamespace::getNamesOfMember(): to be implemented (operation)");
Q_UNUSED(element);
return QSet<QString> ();
@@ -382,7 +382,7 @@ QSet<QString> QMofNamespace::getNamesOfMember(QMofNamedElement *element) const
*/
QSet<QMofPackageableElement *> QMofNamespace::importMembers(QMofPackageableElement *imps) const
{
- qWarning("MofNamespace::importMembers(): to be implemented (operation)");
+ qWarning("QMofNamespace::importMembers(): to be implemented (operation)");
Q_UNUSED(imps);
return QSet<QMofPackageableElement *> ();
@@ -393,7 +393,7 @@ QSet<QMofPackageableElement *> QMofNamespace::importMembers(QMofPackageableEleme
*/
bool QMofNamespace::membersAreDistinguishable() const
{
- qWarning("MofNamespace::membersAreDistinguishable(): to be implemented (operation)");
+ qWarning("QMofNamespace::membersAreDistinguishable(): to be implemented (operation)");
return bool ();
}
diff --git a/src/mof/qmofobject.cpp b/src/mof/qmofobject.cpp
index 275eddfc..099310fd 100644
--- a/src/mof/qmofobject.cpp
+++ b/src/mof/qmofobject.cpp
@@ -50,8 +50,6 @@
\class QMofObject
\inmodule QtMof
-
- \brief
*/
QMofObject::QMofObject(bool createQModelingObject)
{
@@ -69,7 +67,7 @@ QModelingElement *QMofObject::clone() const
QMofObject *QMofObject::get(QMofProperty *property) const
{
- qWarning("MofObject::get(): to be implemented (operation)");
+ qWarning("QMofObject::get(): to be implemented (operation)");
Q_UNUSED(property);
return 0;
@@ -77,7 +75,7 @@ QMofObject *QMofObject::get(QMofProperty *property) const
bool QMofObject::equals(QMofObject *element) const
{
- qWarning("MofObject::equals(): to be implemented (operation)");
+ qWarning("QMofObject::equals(): to be implemented (operation)");
Q_UNUSED(element);
return bool ();
@@ -85,7 +83,7 @@ bool QMofObject::equals(QMofObject *element) const
void QMofObject::set(QMofProperty *property, QMofObject *value)
{
- qWarning("MofObject::set(): to be implemented (operation)");
+ qWarning("QMofObject::set(): to be implemented (operation)");
Q_UNUSED(property);
Q_UNUSED(value);
@@ -93,7 +91,7 @@ void QMofObject::set(QMofProperty *property, QMofObject *value)
bool QMofObject::isSet(QMofProperty *property) const
{
- qWarning("MofObject::isSet(): to be implemented (operation)");
+ qWarning("QMofObject::isSet(): to be implemented (operation)");
Q_UNUSED(property);
return bool ();
@@ -101,14 +99,14 @@ bool QMofObject::isSet(QMofProperty *property) const
void QMofObject::unset(QMofProperty *property)
{
- qWarning("MofObject::unset(): to be implemented (operation)");
+ qWarning("QMofObject::unset(): to be implemented (operation)");
Q_UNUSED(property);
}
QMofObject *QMofObject::invoke(QMofOperation *op, QSet<QMofArgument *> arguments)
{
- qWarning("MofObject::invoke(): to be implemented (operation)");
+ qWarning("QMofObject::invoke(): to be implemented (operation)");
Q_UNUSED(op);
Q_UNUSED(arguments);
diff --git a/src/mof/qmofopaqueexpression.cpp b/src/mof/qmofopaqueexpression.cpp
index 53f2efee..ed6c16a2 100644
--- a/src/mof/qmofopaqueexpression.cpp
+++ b/src/mof/qmofopaqueexpression.cpp
@@ -143,7 +143,7 @@ void QMofOpaqueExpression::removeLanguage(QString language)
*/
bool QMofOpaqueExpression::isIntegral() const
{
- qWarning("MofOpaqueExpression::isIntegral(): to be implemented (operation)");
+ qWarning("QMofOpaqueExpression::isIntegral(): to be implemented (operation)");
return bool ();
}
@@ -153,7 +153,7 @@ bool QMofOpaqueExpression::isIntegral() const
*/
bool QMofOpaqueExpression::isNonNegative() const
{
- qWarning("MofOpaqueExpression::isNonNegative(): to be implemented (operation)");
+ qWarning("QMofOpaqueExpression::isNonNegative(): to be implemented (operation)");
return bool ();
}
@@ -163,7 +163,7 @@ bool QMofOpaqueExpression::isNonNegative() const
*/
bool QMofOpaqueExpression::isPositive() const
{
- qWarning("MofOpaqueExpression::isPositive(): to be implemented (operation)");
+ qWarning("QMofOpaqueExpression::isPositive(): to be implemented (operation)");
return bool ();
}
@@ -173,7 +173,7 @@ bool QMofOpaqueExpression::isPositive() const
*/
int QMofOpaqueExpression::value() const
{
- qWarning("MofOpaqueExpression::value(): to be implemented (operation)");
+ qWarning("QMofOpaqueExpression::value(): to be implemented (operation)");
return int ();
}
diff --git a/src/mof/qmofoperation.cpp b/src/mof/qmofoperation.cpp
index 63524139..83c52916 100644
--- a/src/mof/qmofoperation.cpp
+++ b/src/mof/qmofoperation.cpp
@@ -216,7 +216,7 @@ bool QMofOperation::isOrdered() const
{
// This is a read-only derived property
- qWarning("MofOperation::isOrdered(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::isOrdered(): to be implemented (this is a derived property)");
return bool();
}
@@ -225,7 +225,7 @@ void QMofOperation::setOrdered(bool isOrdered)
{
// This is a read-only derived property
- qWarning("MofOperation::setOrdered(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::setOrdered(): to be implemented (this is a derived property)");
Q_UNUSED(isOrdered);
if (false /* <derivedexclusion-criteria> */) {
@@ -260,7 +260,7 @@ bool QMofOperation::isUnique() const
{
// This is a read-only derived property
- qWarning("MofOperation::isUnique(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::isUnique(): to be implemented (this is a derived property)");
return bool();
}
@@ -269,7 +269,7 @@ void QMofOperation::setUnique(bool isUnique)
{
// This is a read-only derived property
- qWarning("MofOperation::setUnique(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::setUnique(): to be implemented (this is a derived property)");
Q_UNUSED(isUnique);
if (false /* <derivedexclusion-criteria> */) {
@@ -284,7 +284,7 @@ int QMofOperation::lower() const
{
// This is a read-only derived property
- qWarning("MofOperation::lower(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::lower(): to be implemented (this is a derived property)");
return int();
}
@@ -293,7 +293,7 @@ void QMofOperation::setLower(int lower)
{
// This is a read-only derived property
- qWarning("MofOperation::setLower(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::setLower(): to be implemented (this is a derived property)");
Q_UNUSED(lower);
if (false /* <derivedexclusion-criteria> */) {
@@ -495,7 +495,7 @@ QMofType *QMofOperation::type() const
{
// This is a read-only derived association end
- qWarning("MofOperation::type(): to be implemented (this is a derived association end)");
+ qWarning("QMofOperation::type(): to be implemented (this is a derived association end)");
return 0;
}
@@ -504,7 +504,7 @@ void QMofOperation::setType(QMofType *type)
{
// This is a read-only derived association end
- qWarning("MofOperation::setType(): to be implemented (this is a derived association end)");
+ qWarning("QMofOperation::setType(): to be implemented (this is a derived association end)");
Q_UNUSED(type);
if (false /* <derivedexclusion-criteria> */) {
@@ -519,7 +519,7 @@ int QMofOperation::upper() const
{
// This is a read-only derived property
- qWarning("MofOperation::upper(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::upper(): to be implemented (this is a derived property)");
return int();
}
@@ -528,7 +528,7 @@ void QMofOperation::setUpper(int upper)
{
// This is a read-only derived property
- qWarning("MofOperation::setUpper(): to be implemented (this is a derived property)");
+ qWarning("QMofOperation::setUpper(): to be implemented (this is a derived property)");
Q_UNUSED(upper);
if (false /* <derivedexclusion-criteria> */) {
@@ -543,7 +543,7 @@ void QMofOperation::setUpper(int upper)
*/
bool QMofOperation::isConsistentWith(QMofRedefinableElement *redefinee) const
{
- qWarning("MofOperation::isConsistentWith(): to be implemented (operation)");
+ qWarning("QMofOperation::isConsistentWith(): to be implemented (operation)");
Q_UNUSED(redefinee);
return bool ();
@@ -554,7 +554,7 @@ bool QMofOperation::isConsistentWith(QMofRedefinableElement *redefinee) const
*/
QSet<QMofParameter *> QMofOperation::returnResult() const
{
- qWarning("MofOperation::returnResult(): to be implemented (operation)");
+ qWarning("QMofOperation::returnResult(): to be implemented (operation)");
return QSet<QMofParameter *> ();
}
diff --git a/src/mof/qmofpackage.cpp b/src/mof/qmofpackage.cpp
index 0a7ee08d..c407c62f 100644
--- a/src/mof/qmofpackage.cpp
+++ b/src/mof/qmofpackage.cpp
@@ -308,7 +308,7 @@ void QMofPackage::removePackagedElement(QMofPackageableElement *packagedElement)
*/
bool QMofPackage::makesVisible(QMofNamedElement *el) const
{
- qWarning("MofPackage::makesVisible(): to be implemented (operation)");
+ qWarning("QMofPackage::makesVisible(): to be implemented (operation)");
Q_UNUSED(el);
return bool ();
@@ -319,7 +319,7 @@ bool QMofPackage::makesVisible(QMofNamedElement *el) const
*/
bool QMofPackage::mustBeOwned() const
{
- qWarning("MofPackage::mustBeOwned(): to be implemented (operation)");
+ qWarning("QMofPackage::mustBeOwned(): to be implemented (operation)");
return bool ();
}
@@ -329,7 +329,7 @@ bool QMofPackage::mustBeOwned() const
*/
QSet<QMofPackageableElement *> QMofPackage::visibleMembers() const
{
- qWarning("MofPackage::visibleMembers(): to be implemented (operation)");
+ qWarning("QMofPackage::visibleMembers(): to be implemented (operation)");
return QSet<QMofPackageableElement *> ();
}
diff --git a/src/mof/qmofparameter.cpp b/src/mof/qmofparameter.cpp
index 18eba020..1701493f 100644
--- a/src/mof/qmofparameter.cpp
+++ b/src/mof/qmofparameter.cpp
@@ -99,7 +99,7 @@ QString QMofParameter::default_() const
{
// This is a read-only derived property
- qWarning("MofParameter::default_(): to be implemented (this is a derived property)");
+ qWarning("QMofParameter::default_(): to be implemented (this is a derived property)");
return QString();
}
@@ -108,7 +108,7 @@ void QMofParameter::setDefault(QString default_)
{
// This is a read-only derived property
- qWarning("MofParameter::setDefault(): to be implemented (this is a derived property)");
+ qWarning("QMofParameter::setDefault(): to be implemented (this is a derived property)");
Q_UNUSED(default_);
if (false /* <derivedexclusion-criteria> */) {
diff --git a/src/mof/qmofproperty.cpp b/src/mof/qmofproperty.cpp
index 07ab17f4..c18c4174 100644
--- a/src/mof/qmofproperty.cpp
+++ b/src/mof/qmofproperty.cpp
@@ -219,7 +219,7 @@ QString QMofProperty::default_() const
{
// This is a read-write derived property
- qWarning("MofProperty::default_(): to be implemented (this is a derived property)");
+ qWarning("QMofProperty::default_(): to be implemented (this is a derived property)");
return QString();
}
@@ -228,7 +228,7 @@ void QMofProperty::setDefault(QString default_)
{
// This is a read-write derived property
- qWarning("MofProperty::setDefault(): to be implemented (this is a derived property)");
+ qWarning("QMofProperty::setDefault(): to be implemented (this is a derived property)");
Q_UNUSED(default_);
if (false /* <derivedexclusion-criteria> */) {
@@ -273,7 +273,7 @@ bool QMofProperty::isComposite() const
{
// This is a read-write derived property
- qWarning("MofProperty::isComposite(): to be implemented (this is a derived property)");
+ qWarning("QMofProperty::isComposite(): to be implemented (this is a derived property)");
return bool();
}
@@ -282,7 +282,7 @@ void QMofProperty::setComposite(bool isComposite)
{
// This is a read-write derived property
- qWarning("MofProperty::setComposite(): to be implemented (this is a derived property)");
+ qWarning("QMofProperty::setComposite(): to be implemented (this is a derived property)");
Q_UNUSED(isComposite);
if (false /* <derivedexclusion-criteria> */) {
@@ -377,7 +377,7 @@ QMofProperty *QMofProperty::opposite() const
{
// This is a read-write derived association end
- qWarning("MofProperty::opposite(): to be implemented (this is a derived association end)");
+ qWarning("QMofProperty::opposite(): to be implemented (this is a derived association end)");
return 0;
}
@@ -386,7 +386,7 @@ void QMofProperty::setOpposite(QMofProperty *opposite)
{
// This is a read-write derived association end
- qWarning("MofProperty::setOpposite(): to be implemented (this is a derived association end)");
+ qWarning("QMofProperty::setOpposite(): to be implemented (this is a derived association end)");
Q_UNUSED(opposite);
if (false /* <derivedexclusion-criteria> */) {
@@ -502,7 +502,7 @@ void QMofProperty::removeSubsettedProperty(QMofProperty *subsettedProperty)
*/
bool QMofProperty::isAttribute(QMofProperty *p) const
{
- qWarning("MofProperty::isAttribute(): to be implemented (operation)");
+ qWarning("QMofProperty::isAttribute(): to be implemented (operation)");
Q_UNUSED(p);
return bool ();
@@ -513,7 +513,7 @@ bool QMofProperty::isAttribute(QMofProperty *p) const
*/
bool QMofProperty::isConsistentWith(QMofRedefinableElement *redefinee) const
{
- qWarning("MofProperty::isConsistentWith(): to be implemented (operation)");
+ qWarning("QMofProperty::isConsistentWith(): to be implemented (operation)");
Q_UNUSED(redefinee);
return bool ();
@@ -524,7 +524,7 @@ bool QMofProperty::isConsistentWith(QMofRedefinableElement *redefinee) const
*/
bool QMofProperty::isNavigable() const
{
- qWarning("MofProperty::isNavigable(): to be implemented (operation)");
+ qWarning("QMofProperty::isNavigable(): to be implemented (operation)");
return bool ();
}
@@ -534,7 +534,7 @@ bool QMofProperty::isNavigable() const
*/
QSet<QMofType *> QMofProperty::subsettingContext() const
{
- qWarning("MofProperty::subsettingContext(): to be implemented (operation)");
+ qWarning("QMofProperty::subsettingContext(): to be implemented (operation)");
return QSet<QMofType *> ();
}
diff --git a/src/mof/qmofredefinableelement.cpp b/src/mof/qmofredefinableelement.cpp
index ef258efd..b4133512 100644
--- a/src/mof/qmofredefinableelement.cpp
+++ b/src/mof/qmofredefinableelement.cpp
@@ -158,7 +158,7 @@ void QMofRedefinableElement::removeRedefinitionContext(QMofClassifier *redefinit
*/
bool QMofRedefinableElement::isConsistentWith(QMofRedefinableElement *redefinee) const
{
- qWarning("MofRedefinableElement::isConsistentWith(): to be implemented (operation)");
+ qWarning("QMofRedefinableElement::isConsistentWith(): to be implemented (operation)");
Q_UNUSED(redefinee);
return bool ();
@@ -169,7 +169,7 @@ bool QMofRedefinableElement::isConsistentWith(QMofRedefinableElement *redefinee)
*/
bool QMofRedefinableElement::isRedefinitionContextValid(QMofRedefinableElement *redefined) const
{
- qWarning("MofRedefinableElement::isRedefinitionContextValid(): to be implemented (operation)");
+ qWarning("QMofRedefinableElement::isRedefinitionContextValid(): to be implemented (operation)");
Q_UNUSED(redefined);
return bool ();
diff --git a/src/mof/qmofreflectivecollection.cpp b/src/mof/qmofreflectivecollection.cpp
index b7ad8986..61b2fbf7 100644
--- a/src/mof/qmofreflectivecollection.cpp
+++ b/src/mof/qmofreflectivecollection.cpp
@@ -46,8 +46,6 @@
\class QMofReflectiveCollection
\inmodule QtMof
-
- \brief
*/
QMofReflectiveCollection::QMofReflectiveCollection(bool createQModelingObject) :
QMofObject(false)
@@ -66,7 +64,7 @@ QModelingElement *QMofReflectiveCollection::clone() const
bool QMofReflectiveCollection::add(QMofObject *object)
{
- qWarning("MofReflectiveCollection::add(): to be implemented (operation)");
+ qWarning("QMofReflectiveCollection::add(): to be implemented (operation)");
Q_UNUSED(object);
return bool ();
@@ -74,7 +72,7 @@ bool QMofReflectiveCollection::add(QMofObject *object)
bool QMofReflectiveCollection::addAll(QMofReflectiveCollection *objects)
{
- qWarning("MofReflectiveCollection::addAll(): to be implemented (operation)");
+ qWarning("QMofReflectiveCollection::addAll(): to be implemented (operation)");
Q_UNUSED(objects);
return bool ();
@@ -82,13 +80,13 @@ bool QMofReflectiveCollection::addAll(QMofReflectiveCollection *objects)
void QMofReflectiveCollection::clear()
{
- qWarning("MofReflectiveCollection::clear(): to be implemented (operation)");
+ qWarning("QMofReflectiveCollection::clear(): to be implemented (operation)");
}
bool QMofReflectiveCollection::remove(QMofObject *object)
{
- qWarning("MofReflectiveCollection::remove(): to be implemented (operation)");
+ qWarning("QMofReflectiveCollection::remove(): to be implemented (operation)");
Q_UNUSED(object);
return bool ();
@@ -96,7 +94,7 @@ bool QMofReflectiveCollection::remove(QMofObject *object)
int QMofReflectiveCollection::size() const
{
- qWarning("MofReflectiveCollection::size(): to be implemented (operation)");
+ qWarning("QMofReflectiveCollection::size(): to be implemented (operation)");
return int ();
}
diff --git a/src/mof/qmofreflectivesequence.cpp b/src/mof/qmofreflectivesequence.cpp
index 5ae67300..185cb163 100644
--- a/src/mof/qmofreflectivesequence.cpp
+++ b/src/mof/qmofreflectivesequence.cpp
@@ -48,8 +48,6 @@
\class QMofReflectiveSequence
\inmodule QtMof
-
- \brief
*/
QMofReflectiveSequence::QMofReflectiveSequence(bool createQModelingObject) :
QMofReflectiveCollection(false)
@@ -68,7 +66,7 @@ QModelingElement *QMofReflectiveSequence::clone() const
void QMofReflectiveSequence::add(int index, QMofObject *object)
{
- qWarning("MofReflectiveSequence::add(): to be implemented (operation)");
+ qWarning("QMofReflectiveSequence::add(): to be implemented (operation)");
Q_UNUSED(index);
Q_UNUSED(object);
@@ -76,7 +74,7 @@ void QMofReflectiveSequence::add(int index, QMofObject *object)
QMofObject *QMofReflectiveSequence::get(int index) const
{
- qWarning("MofReflectiveSequence::get(): to be implemented (operation)");
+ qWarning("QMofReflectiveSequence::get(): to be implemented (operation)");
Q_UNUSED(index);
return 0;
@@ -84,7 +82,7 @@ QMofObject *QMofReflectiveSequence::get(int index) const
QMofObject *QMofReflectiveSequence::remove(int index)
{
- qWarning("MofReflectiveSequence::remove(): to be implemented (operation)");
+ qWarning("QMofReflectiveSequence::remove(): to be implemented (operation)");
Q_UNUSED(index);
return 0;
@@ -92,7 +90,7 @@ QMofObject *QMofReflectiveSequence::remove(int index)
QMofObject *QMofReflectiveSequence::set(int index, QMofObject *object)
{
- qWarning("MofReflectiveSequence::set(): to be implemented (operation)");
+ qWarning("QMofReflectiveSequence::set(): to be implemented (operation)");
Q_UNUSED(index);
Q_UNUSED(object);
diff --git a/src/mof/qmoftag.cpp b/src/mof/qmoftag.cpp
index 98ad5c86..73d3c233 100644
--- a/src/mof/qmoftag.cpp
+++ b/src/mof/qmoftag.cpp
@@ -46,8 +46,6 @@
\class QMofTag
\inmodule QtMof
-
- \brief
*/
QMofTag::QMofTag(bool createQModelingObject) :
_tagOwner(0)
diff --git a/src/mof/qmoftype.cpp b/src/mof/qmoftype.cpp
index 421c6ead..7dfdee96 100644
--- a/src/mof/qmoftype.cpp
+++ b/src/mof/qmoftype.cpp
@@ -102,7 +102,7 @@ void QMofType::setPackage(QMofPackage *package)
*/
bool QMofType::conformsTo(QMofType *other) const
{
- qWarning("MofType::conformsTo(): to be implemented (operation)");
+ qWarning("QMofType::conformsTo(): to be implemented (operation)");
Q_UNUSED(other);
return bool ();
@@ -110,7 +110,7 @@ bool QMofType::conformsTo(QMofType *other) const
bool QMofType::isInstance(QMofObject *object) const
{
- qWarning("MofType::isInstance(): to be implemented (operation)");
+ qWarning("QMofType::isInstance(): to be implemented (operation)");
Q_UNUSED(object);
return bool ();
diff --git a/src/mof/qmofuriextent.cpp b/src/mof/qmofuriextent.cpp
index 2c0be031..c1fac18b 100644
--- a/src/mof/qmofuriextent.cpp
+++ b/src/mof/qmofuriextent.cpp
@@ -48,8 +48,6 @@
\class QMofURIExtent
\inmodule QtMof
-
- \brief
*/
QMofURIExtent::QMofURIExtent(bool createQModelingObject) :
QMofExtent(false)
@@ -68,14 +66,14 @@ QModelingElement *QMofURIExtent::clone() const
QString QMofURIExtent::contextURI() const
{
- qWarning("MofURIExtent::contextURI(): to be implemented (operation)");
+ qWarning("QMofURIExtent::contextURI(): to be implemented (operation)");
return QString ();
}
QString QMofURIExtent::uri(QMofElement *object) const
{
- qWarning("MofURIExtent::uri(): to be implemented (operation)");
+ qWarning("QMofURIExtent::uri(): to be implemented (operation)");
Q_UNUSED(object);
return QString ();
@@ -83,7 +81,7 @@ QString QMofURIExtent::uri(QMofElement *object) const
QMofElement *QMofURIExtent::element(QString uri) const
{
- qWarning("MofURIExtent::element(): to be implemented (operation)");
+ qWarning("QMofURIExtent::element(): to be implemented (operation)");
Q_UNUSED(uri);
return 0;
diff --git a/src/mof/qmofvaluespecification.cpp b/src/mof/qmofvaluespecification.cpp
index 84761531..41c2f7d2 100644
--- a/src/mof/qmofvaluespecification.cpp
+++ b/src/mof/qmofvaluespecification.cpp
@@ -77,7 +77,7 @@ QModelingElement *QMofValueSpecification::clone() const
*/
bool QMofValueSpecification::booleanValue() const
{
- qWarning("MofValueSpecification::booleanValue(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::booleanValue(): to be implemented (operation)");
return bool ();
}
@@ -87,7 +87,7 @@ bool QMofValueSpecification::booleanValue() const
*/
int QMofValueSpecification::integerValue() const
{
- qWarning("MofValueSpecification::integerValue(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::integerValue(): to be implemented (operation)");
return int ();
}
@@ -97,7 +97,7 @@ int QMofValueSpecification::integerValue() const
*/
bool QMofValueSpecification::isComputable() const
{
- qWarning("MofValueSpecification::isComputable(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::isComputable(): to be implemented (operation)");
return bool ();
}
@@ -107,7 +107,7 @@ bool QMofValueSpecification::isComputable() const
*/
bool QMofValueSpecification::isNull() const
{
- qWarning("MofValueSpecification::isNull(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::isNull(): to be implemented (operation)");
return bool ();
}
@@ -117,7 +117,7 @@ bool QMofValueSpecification::isNull() const
*/
double QMofValueSpecification::realValue()
{
- qWarning("MofValueSpecification::realValue(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::realValue(): to be implemented (operation)");
return double ();
}
@@ -127,7 +127,7 @@ double QMofValueSpecification::realValue()
*/
QString QMofValueSpecification::stringValue() const
{
- qWarning("MofValueSpecification::stringValue(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::stringValue(): to be implemented (operation)");
return QString ();
}
@@ -137,7 +137,7 @@ QString QMofValueSpecification::stringValue() const
*/
int QMofValueSpecification::unlimitedValue() const
{
- qWarning("MofValueSpecification::unlimitedValue(): to be implemented (operation)");
+ qWarning("QMofValueSpecification::unlimitedValue(): to be implemented (operation)");
return int ();
}
diff --git a/src/mof/qtmofnamespace.cpp b/src/mof/qtmofnamespace.cpp
index 5dfcfcb5..9a9acce2 100644
--- a/src/mof/qtmofnamespace.cpp
+++ b/src/mof/qtmofnamespace.cpp
@@ -48,11 +48,8 @@ QT_BEGIN_NAMESPACE
AggregationKind is an enumeration type that specifies the literals for defining the kind of aggregation of a property.
\value AggregationKindNone Indicates that the property has no aggregation.
-
\value AggregationKindShared Indicates that the property has a shared aggregation.
-
- \value AggregationKindComposite Indicates that the property is aggregated compositely, i.e., the composite object has responsibility for the existence and storage of the composed objects (parts).
- */
+ \value AggregationKindComposite Indicates that the property is aggregated compositely, i.e., the composite object has responsibility for the existence and storage of the composed objects (parts). */
/*!
\enum QtMof::ParameterDirectionKind
@@ -60,26 +57,13 @@ QT_BEGIN_NAMESPACE
Parameter direction kind is an enumeration type that defines literals used to specify direction of parameters.
\value ParameterDirectionKindIn Indicates that parameter values are passed into the behavioral element by the caller.
-
\value ParameterDirectionKindInout Indicates that parameter values are passed into a behavioral element by the caller and then back out to the caller from the behavioral element.
-
- \value ParameterDirectionKindOut
-
- \value ParameterDirectionKindReturn Indicates that parameter values are passed as return values from a behavioral element back to the caller.
- */
+ \value ParameterDirectionKindReturn Indicates that parameter values are passed as return values from a behavioral element back to the caller. */
/*!
\enum QtMof::VisibilityKind
VisibilityKind is an enumeration type that defines literals to determine the visibility of elements in a model.
-
- \value VisibilityKindPublic
-
- \value VisibilityKindPrivate
-
- \value VisibilityKindProtected
-
- \value VisibilityKindPackage
*/
QT_END_NAMESPACE