You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/artifact.cpp

58 lines
1.8 KiB

/***************************************************************************
* *
* 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) 2003-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#include "artifact.h"
#include "association.h"
#include "clipboard/idchangelog.h"
#include <kdebug.h>
#include <tdelocale.h>
UMLArtifact::UMLArtifact(const TQString & name, Uml::IDType id)
: UMLCanvasObject(name, id) {
init();
}
UMLArtifact::~UMLArtifact() {
}
void UMLArtifact::init() {
m_BaseType = Uml::ot_Artifact;
m_drawAsType = defaultDraw;
}
UMLObject* UMLArtifact::clone() const {
UMLArtifact *clone = new UMLArtifact();
UMLObject::copyInto(clone);
return clone;
}
void UMLArtifact::saveToXMI(TQDomDocument& qDoc, TQDomElement& qElement) {
TQDomElement artifactElement = UMLObject::save("UML:Artifact", qDoc);
artifactElement.setAttribute("drawas", m_drawAsType);
qElement.appendChild(artifactElement);
}
bool UMLArtifact::load(TQDomElement& element) {
TQString drawAs = element.attribute("drawas", "0");
m_drawAsType = (Draw_Type)drawAs.toInt();
return true;
}
void UMLArtifact::setDrawAsType(Draw_Type type) {
m_drawAsType = type;
}
UMLArtifact::Draw_Type UMLArtifact::getDrawAsType() {
return m_drawAsType;
}
#include "artifact.moc"