#include "UmlTransition.h" QCString UmlTransition::sKind() { return "transition"; } void UmlTransition::html(QCString, unsigned int, unsigned int) { fw.write("
Transition "); writeq(name()); fw.write("
"); if (parent() == target()) { fw.write("

Self relation of "); parent()->write(); fw.write((isExternal()) ? ", external

" : ", internal

"); } else { fw.write("

From "); parent()->write(); fw.write(" To "); target()->write(); fw.write("

"); } QCString s = description(); if (!s.isEmpty()) { fw.write("

"); writeq(s); fw.write("

"); } fw.write("

Trigger :

"); fw.write("

Guard :

"); fw.write("

Activity :

"); write_properties(); unload(FALSE, FALSE); }