#include "UmlPinParameter.h" void UmlPinParameter::html(QCString pfix, unsigned int rank, unsigned int level) { if (isUnique()) { if (isException()) fw.write("
Unique, exception
"); else fw.write("Read only
"); } else if (isException()) fw.write("Exception
"); fw.write("Direction : "); write(direction()); fw.write("
"); if (effect() != noEffect) { fw.write("Effect : "); write(effect()); fw.write("
"); } html_internal(pfix, rank, level); }