summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeoperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codeoperation.h')
-rw-r--r--umbrello/umbrello/codeoperation.h94
1 files changed, 94 insertions, 0 deletions
diff --git a/umbrello/umbrello/codeoperation.h b/umbrello/umbrello/codeoperation.h
new file mode 100644
index 00000000..abe97e75
--- /dev/null
+++ b/umbrello/umbrello/codeoperation.h
@@ -0,0 +1,94 @@
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+/* This code generated by:
+ * Author : thomas
+ * Date : Fri Jun 20 2003
+ */
+
+
+#ifndef CODEOPERATION_H
+#define CODEOPERATION_H
+
+#include <qstring.h>
+
+#include "codemethodblock.h"
+#include "operation.h"
+
+// class CodeParameter;
+
+class CodeOperation : public CodeMethodBlock
+{
+ Q_OBJECT
+public:
+
+ // Constructors/Destructors
+ //
+
+ /**
+ * Constructors
+ */
+ CodeOperation ( ClassifierCodeDocument * doc , UMLOperation * parent,
+ const QString & body = "", const QString & comment = "");
+
+ /**
+ * Empty Destructor
+ */
+ virtual ~CodeOperation ( );
+
+ /**
+ * Get the parent UMLOperation of this codeoperation.
+ */
+ UMLOperation * getParentOperation( );
+
+ /**
+ * 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 );
+
+ /** Find the value of the tag that this operation would have.
+ */
+ static QString findTag (UMLOperation * op) ;
+
+ /** set the class attributes from a passed object
+ */
+ virtual void setAttributesFromObject (TextBlock * obj);
+
+protected:
+
+ // list of parameters used by this code operation.
+ // QPtrList<CodeParameter> m_parameterVector;
+
+ /** set attributes of the node that represents this class
+ * in the XMI document.
+ */
+ virtual void setAttributesOnNode ( QDomDocument & doc, QDomElement & blockElement);
+
+ /** set the class attributes of this object from
+ * the passed element node.
+ */
+ virtual void setAttributesFromNode ( QDomElement & element);
+
+ virtual void updateMethodDeclaration() = 0;
+ virtual void updateContent();
+
+private:
+
+ UMLOperation * m_parentOperation;
+ void init (UMLOperation * parentOp);
+
+};
+
+#endif // CODEOPERATION_H