summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/hierarchicalcodeblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/hierarchicalcodeblock.h')
-rw-r--r--umbrello/umbrello/hierarchicalcodeblock.h155
1 files changed, 155 insertions, 0 deletions
diff --git a/umbrello/umbrello/hierarchicalcodeblock.h b/umbrello/umbrello/hierarchicalcodeblock.h
new file mode 100644
index 00000000..3c0dcbc1
--- /dev/null
+++ b/umbrello/umbrello/hierarchicalcodeblock.h
@@ -0,0 +1,155 @@
+/***************************************************************************
+ * *
+ * 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 : Wed Jun 18 2003
+ */
+
+
+#ifndef HIERARCHICALCODEBLOCK_H
+#define HIERARCHICALCODEBLOCK_H
+
+#include <qmap.h>
+#include <qstring.h>
+
+#include "codegenobjectwithtextblocks.h"
+#include "codeblockwithcomments.h"
+#include "codeclassfieldlist.h"
+
+class HierarchicalCodeBlock : public CodeBlockWithComments, public CodeGenObjectWithTextBlocks
+{
+ Q_OBJECT
+ friend class CodeGenObjectWithTextBlocks;
+public:
+
+ // Constructors/Destructors
+ //
+
+ /**
+ * Constructor
+ */
+ explicit HierarchicalCodeBlock ( CodeDocument * doc , const QString &startString = "", const QString &endString = "", const QString &comment = "");
+
+ /**
+ * Empty Destructor
+ */
+ virtual ~HierarchicalCodeBlock ( );
+
+ // Public attributes
+ //
+
+ // Public attribute accessor methods
+ //
+
+ /**
+ * Set the value of m_endText
+ * @param new_var the new value of m_endText
+ */
+ void setEndText ( const QString &new_var );
+
+ /**
+ * Get the value of m_endText
+ * @return the value of m_endText
+ */
+ QString getEndText ( );
+
+ /**
+ * Add a TextBlock object to the m_textblockVector List
+ */
+ bool addTextBlock ( TextBlock * add_object );
+
+ /**
+ * Insert a new text block before/after the existing text block. Returns
+ * false if it cannot insert the textblock.
+ */
+ bool insertTextBlock (TextBlock * newBlock, TextBlock * existingBlock, bool after = true);
+
+ /**
+ * Remove a TextBlock object from m_textblockVector List
+ * returns boolean - true if successful
+ */
+ bool removeTextBlock ( TextBlock * remove_object );
+
+ /**
+ * @param text
+ */
+ void setStartText ( const QString &text );
+
+ /**
+ * @return QString
+ */
+ QString getStartText ( );
+
+ /**
+ * Save the XMI representation of this object
+ */
+ virtual void saveToXMI ( QDomDocument & doc, QDomElement & root );
+
+ /**
+ * load params from the appropriate XMI element node.
+ */
+ virtual void loadFromXMI ( QDomElement & root );
+
+ /**
+ * @return QString
+ */
+ virtual QString toString ( );
+
+ // return a unique, and currently unallocated, text block tag for this hblock
+ QString getUniqueTag();
+ QString getUniqueTag( const QString& prefix );
+
+ /**
+ * Utility method to add accessormethods in this object
+ */
+ void addCodeClassFieldMethods ( CodeClassFieldList &list );
+
+ virtual CodeBlock * newCodeBlock();
+ virtual CodeBlockWithComments * newCodeBlockWithComments();
+ virtual HierarchicalCodeBlock * newHierarchicalCodeBlock();
+
+protected:
+
+ /** causes the text block to release all of its connections
+ * and any other text blocks that it 'owns'.
+ * needed to be called prior to deletion of the textblock.
+ */
+ virtual void release ();
+
+ /** set attributes of the node that represents this class
+ * in the XMI document.
+ */
+ virtual void setAttributesOnNode (QDomDocument & doc, QDomElement & elem );
+
+ /** set the class attributes of this object from
+ * the passed element node.
+ */
+ virtual void setAttributesFromNode ( QDomElement & element);
+
+ /** set the class attributes from a passed object
+ */
+ virtual void setAttributesFromObject (TextBlock * obj);
+
+ // look for specific text blocks which belong to code classfields
+ TextBlock * findCodeClassFieldTextBlockByTag ( const QString &tag );
+
+private:
+
+ QString m_startText;
+ QString m_endText;
+
+ QString childTextBlocksToString();
+ void initAttributes ( ) ;
+
+};
+
+#endif // HIERARCHICALCODEBLOCK_H