1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#include "UmlPackage.h"
#include "UmlClassDiagram.h"
QCString UmlPackage::sKind() {
return (stereotype() == "profile")
? "profile" : "package";
}
void UmlPackage::html(QCString pfix, unsigned int rank, unsigned int level) {
define();
if (stereotype() == "profile")
chapter("Profile", pfix, rank, "profile", level);
else
chapter("Package", pfix, rank, "package", level);
QCString s = description();
if (!s.isEmpty()) {
fw.write("<p>");
writeq(s);
fw.write("<br /></p>");
}
bool ul = FALSE;
s = cppNamespace();
if (!s.isEmpty()) {
fw.write("<p></p><ul>\n");
ul = TRUE;
fw.write("<li>C++ namespace : ");
writeq(s);
fw.write("</li>\n");
}
s = javaPackage();
if (!s.isEmpty()) {
if (! ul)
fw.write("<p></p><ul>");
ul = TRUE;
fw.write("<li>Java package : ");
writeq(s);
fw.write("</li>\n");
}
if (ul)
fw.write("</ul>\n");
write_dependencies();
UmlDiagram * d = associatedDiagram();
if (d != 0) {
fw.write("<p>Diagram : ");
d->write();
fw.write("</p>\n");
}
write_properties();
write_children(pfix, rank, level);
unload(FALSE, FALSE);
}
void UmlPackage::memo_ref() {
packages.addElement(this);
UmlItem::memo_ref();
}
void UmlPackage::ref_index()
{
if (!packages.isEmpty())
fw.write("<a href=\"packages.html\" target = \"projectFrame\"><b> -Packages- </b></a>");
}
void UmlPackage::generate_index()
{
UmlItem::generate_index(packages, "Packages", "packages");
}
bool UmlPackage::chapterp() {
return TRUE;
}
Vector UmlPackage::packages;
|