You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* copyright (C) 2006 *
|
|
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
|
|
***************************************************************************/
|
|
|
|
// own header
|
|
#include "petalnode.h"
|
|
|
|
PetalNode::PetalNode(NodeType nt) {
|
|
m_type = nt;
|
|
}
|
|
|
|
PetalNode::~PetalNode() {
|
|
}
|
|
|
|
PetalNode::NodeType PetalNode::type() const {
|
|
return m_type;
|
|
}
|
|
|
|
TQStringList PetalNode::initialArgs() const {
|
|
return m_initialArgs;
|
|
}
|
|
|
|
TQString PetalNode::name() const {
|
|
if (m_initialArgs.count() == 0)
|
|
return TQString();
|
|
return m_initialArgs.first();
|
|
}
|
|
|
|
PetalNode::NameValueList PetalNode::attributes() const {
|
|
return m_attributes;
|
|
}
|
|
|
|
/*
|
|
void PetalNode::setType(PetalNode::NodeType t) {
|
|
m_type = t;
|
|
}
|
|
*/
|
|
|
|
void PetalNode::setInitialArgs(const TQStringList& args) {
|
|
m_initialArgs = args;
|
|
}
|
|
|
|
void PetalNode::setAttributes(PetalNode::NameValueList vl) {
|
|
m_attributes = vl;
|
|
}
|
|
|
|
PetalNode::StringOrNode PetalNode::findAttribute(const TQString& name) const {
|
|
for (uint i = 0; i < m_attributes.count(); i++) {
|
|
if (m_attributes[i].first == name)
|
|
return m_attributes[i].second;
|
|
}
|
|
return StringOrNode();
|
|
}
|
|
|