summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/javaclassifiercodedocument.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/javaclassifiercodedocument.h')
-rw-r--r--umbrello/umbrello/codegenerators/javaclassifiercodedocument.h110
1 files changed, 110 insertions, 0 deletions
diff --git a/umbrello/umbrello/codegenerators/javaclassifiercodedocument.h b/umbrello/umbrello/codegenerators/javaclassifiercodedocument.h
new file mode 100644
index 00000000..ddad6e1a
--- /dev/null
+++ b/umbrello/umbrello/codegenerators/javaclassifiercodedocument.h
@@ -0,0 +1,110 @@
+/***************************************************************************
+ * *
+ * 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) 2004-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+/* This code generated by:
+ * Author : thomas
+ * Date : Mon Jun 23 2003
+ */
+
+
+
+#ifndef JAVACLASSIFIERCODEDOCUMENT_H
+#define JAVACLASSIFIERCODEDOCUMENT_H
+
+#include <qstring.h>
+
+#include "../codeclassfieldlist.h"
+#include "../classifiercodedocument.h"
+#include "../classifier.h"
+#include "../hierarchicalcodeblock.h"
+#include "classifierinfo.h"
+#include "javacodeclassfield.h"
+#include "javacodeoperation.h"
+
+class JavaClassDeclarationBlock;
+class JavaCodeGenerationPolicy;
+
+/**
+ * class JavaClassifierCodeDocument
+ * A Java UMLClassifier Code Document.
+ */
+
+class JavaClassifierCodeDocument : public ClassifierCodeDocument
+{
+ Q_OBJECT
+public:
+
+ // Constructors/Destructors
+ //
+
+
+ /**
+ * Constructor
+ */
+ JavaClassifierCodeDocument (UMLClassifier * classifier);
+
+ /**
+ * Empty Destructor
+ */
+ virtual ~JavaClassifierCodeDocument ( );
+
+ /**
+ * Get the dialog widget which allows user interaction with the object parameters.
+ * @return CodeDocumentDialog
+ */
+ //CodeDocumentDialog getDialog ( );
+
+ QString scopeToJavaDecl(Uml::Visibility scope);
+
+ // Make it easier on ourselves
+ JavaCodeGenerationPolicy * getJavaPolicy();
+
+ QString getJavaClassName (const QString &name);
+
+ QString getPath();
+
+ /** add a code operation to this java classifier code document.
+ * @return bool which is true IF the code operation was added successfully
+ */
+ bool addCodeOperation (CodeOperation * op );
+
+protected:
+
+ // reset/clear our inventory of textblocks in this document
+ void resetTextBlocks();
+
+ /**
+ * need to overwrite this for java since we need to pick up the
+ * java class declaration block.
+ */
+ virtual void loadChildTextBlocksFromNode ( QDomElement & root);
+
+ void addOrUpdateCodeClassFieldMethodsInCodeBlock(CodeClassFieldList &list, JavaClassDeclarationBlock * codeBlock);
+
+ bool forceDoc ();
+
+ void updateContent();
+
+private:
+
+ JavaClassDeclarationBlock * classDeclCodeBlock;
+ HierarchicalCodeBlock * constructorBlock;
+ HierarchicalCodeBlock * operationsBlock;
+
+ ClassifierInfo * info;
+
+ void init ( );
+ JavaClassDeclarationBlock * getClassDecl();
+
+
+};
+
+#endif // JAVACLASSIFIERCODEDOCUMENT_H