#include "UmlCom.h" #include "UmlStateAction.h" QCString UmlStateAction::sKind() { return "state action"; } void UmlStateAction::html(QCString pfix, unsigned int rank, unsigned int level) { UmlCom::message(name()); QCString s = stereotype(); if (s.isEmpty()) s = "State action"; else s = "State action " + s; UmlItem::html(s, (UmlDiagram *) 0); fw.write("

Defined in "); if (parent()->kind() == aRegion) parent()->parent()->write(); else parent()->write(); fw.write("

"); fw.write("

Expression :

"); write_children(pfix, rank, level); unload(FALSE, FALSE); }