summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/phpwriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/phpwriter.h')
-rw-r--r--umbrello/umbrello/codegenerators/phpwriter.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/umbrello/umbrello/codegenerators/phpwriter.h b/umbrello/umbrello/codegenerators/phpwriter.h
new file mode 100644
index 00000000..a3acb68b
--- /dev/null
+++ b/umbrello/umbrello/codegenerators/phpwriter.h
@@ -0,0 +1,90 @@
+/***************************************************************************
+ phpwriter.h - description
+ -------------------
+ begin : Thu Oct 17 2002
+ copyright : (C) 2002 by Heiko Nardmann
+ email : h.nardmann@secunet.de
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+#ifndef PHPWRITER_H
+#define PHPWRITER_H
+
+#include "simplecodegenerator.h"
+#include "../umlattributelist.h"
+#include "../umloperationlist.h"
+
+/**
+ * class PhpWriter is a PHP code generator for UMLClassifier objects
+ * Just call writeClass and feed it a UMLClassifier;
+ */
+class PhpWriter : public SimpleCodeGenerator {
+ Q_OBJECT
+public:
+
+ PhpWriter();
+ virtual ~PhpWriter();
+
+ /**
+ * call this method to generate Php code for a UMLClassifier
+ * @param c the class you want to generate code for.
+ */
+ virtual void writeClass(UMLClassifier *c);
+
+ /**
+ * returns "PHP"
+ */
+ virtual Uml::Programming_Language getLanguage();
+
+ /**
+ * get list of reserved keywords
+ */
+ virtual const QStringList reservedKeywords() const;
+
+private:
+
+ /**
+ * we do not want to write the comment "Private methods" twice
+ */
+ bool bPrivateSectionCommentIsWritten;
+
+ /**
+ * write all operations for a given class
+ *
+ * @param c the concept we are generating code for
+ * @param php output stream for the PHP file
+ */
+ void writeOperations(UMLClassifier *c, QTextStream &php);
+
+ /**
+ * write a list of class operations
+ *
+ * @param classname the name of the class
+ * @param opList the list of operations
+ * @param php output stream for the PHP file
+ */
+ void writeOperations(QString classname, UMLOperationList &opList,
+ QTextStream &php);
+
+ /** write all the attributes of a class
+ * @param c the class we are generating code for
+ * @param php output stream for the PHP file
+ */
+ void writeAttributes(UMLClassifier *c, QTextStream &php);
+
+ /** write a list of class attributes
+ * @param atList the list of attributes
+ * @param php output stream for the PHP file
+ */
+ void writeAttributes(UMLAttributeList &atList, QTextStream &php);
+};
+
+#endif //PHPWRITER