summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/rubycodegenerationpolicy.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/rubycodegenerationpolicy.h')
-rw-r--r--umbrello/umbrello/codegenerators/rubycodegenerationpolicy.h117
1 files changed, 117 insertions, 0 deletions
diff --git a/umbrello/umbrello/codegenerators/rubycodegenerationpolicy.h b/umbrello/umbrello/codegenerators/rubycodegenerationpolicy.h
new file mode 100644
index 00000000..aa1a7146
--- /dev/null
+++ b/umbrello/umbrello/codegenerators/rubycodegenerationpolicy.h
@@ -0,0 +1,117 @@
+/***************************************************************************
+ rubycodegenerationpolicy.cpp
+ Derived from the Java code generator by thomas
+
+ begin : Thur Jul 21 2005
+ author : Richard Dale
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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) 2005-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+#ifndef RUBYCODEGENERATIONPOLICY_H
+#define RUBYCODEGENERATIONPOLICY_H
+
+#include <qstring.h>
+#include "codegenpolicyext.h"
+#include "../codegenerationpolicy.h"
+
+class KConfig;
+class CodeGenerationPolicyPage;
+
+class RubyCodeGenerationPolicy : public CodeGenPolicyExt
+{
+ Q_OBJECT
+public:
+
+ static const bool DEFAULT_AUTO_GEN_ATTRIB_ACCESSORS;
+ static const bool DEFAULT_AUTO_GEN_ASSOC_ACCESSORS;
+
+ // Constructors/Destructors
+ //
+
+ /**
+ * Constructors
+ */
+ RubyCodeGenerationPolicy (KConfig * config = 0);
+
+ /**
+ * Empty Destructor
+ */
+ virtual ~RubyCodeGenerationPolicy ( );
+
+ // Public attributes
+ //
+
+
+ // Public attribute accessor methods
+ //
+
+ /**
+ * Set the value of m_autoGenerateAttribAccessors
+ * @param var the new value
+ */
+ void setAutoGenerateAttribAccessors ( bool var );
+
+ /**
+ * Get the value of m_autoGenerateAttribAccessors
+ * @return value the boolean value of m_autoGenerateAttribAccessors
+ */
+ bool getAutoGenerateAttribAccessors( );
+
+ /**
+ * Set the value of m_autoGenerateAssocAccessors
+ * @param var the new value
+ */
+ void setAutoGenerateAssocAccessors ( bool var );
+
+ /**
+ * Get the value of m_autoGenerateAssocAccessors
+ * @return value the boolean value of m_autoGenerateAssocAccessors
+ */
+ bool getAutoGenerateAssocAccessors( );
+
+ /**
+ * set the defaults for this code generator from the passed generator.
+ */
+ virtual void setDefaults (CodeGenPolicyExt * defaults, bool emitUpdateSignal = true);
+
+ /**
+ * set the defaults from a config file for this code generator from the passed KConfig pointer.
+ */
+ virtual void setDefaults(KConfig * config, bool emitUpdateSignal = true);
+
+ /**
+ * write Default params to passed KConfig pointer.
+ */
+ virtual void writeConfig (KConfig * config);
+
+ /**
+ * Create a new dialog interface for this object.
+ * @return dialog object
+ */
+ CodeGenerationPolicyPage * createPage ( QWidget *parent = 0, const char * name = 0);
+
+protected:
+
+ /**
+ */
+ void init ( );
+
+private:
+
+ CodeGenerationPolicy *m_commonPolicy;
+ bool m_autoGenerateAttribAccessors;
+ bool m_autoGenerateAssocAccessors;
+
+};
+
+#endif // RUBYCODEGENERATIONPOLICY_H