summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/javacodegenerationpolicy.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/javacodegenerationpolicy.h')
-rw-r--r--umbrello/umbrello/codegenerators/javacodegenerationpolicy.h116
1 files changed, 116 insertions, 0 deletions
diff --git a/umbrello/umbrello/codegenerators/javacodegenerationpolicy.h b/umbrello/umbrello/codegenerators/javacodegenerationpolicy.h
new file mode 100644
index 00000000..2a40cb57
--- /dev/null
+++ b/umbrello/umbrello/codegenerators/javacodegenerationpolicy.h
@@ -0,0 +1,116 @@
+/***************************************************************************
+ * *
+ * 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) 2003-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+/* This code generated by:
+ * Author : thomas
+ * Date : Mon Jun 23 2003
+ */
+
+#ifndef JAVACODEGENERATIONPOLICY_H
+#define JAVACODEGENERATIONPOLICY_H
+
+#include <qstring.h>
+#include "codegenpolicyext.h"
+#include "../codegenerationpolicy.h"
+
+class KConfig;
+class CodeGenerationPolicyPage;
+
+class JavaCodeGenerationPolicy : public CodeGenPolicyExt
+{
+ Q_OBJECT
+public:
+
+ static const bool DEFAULT_AUTO_GEN_ATTRIB_ACCESSORS;
+ static const bool DEFAULT_AUTO_GEN_ASSOC_ACCESSORS;
+
+ // Constructors/Destructors
+ //
+
+ /**
+ * Constructors
+ */
+ //JavaCodeGenerationPolicy (CodeGenerationPolicy * defaults = 0);
+ JavaCodeGenerationPolicy (KConfig * config = 0);
+
+ /**
+ * Empty Destructor
+ */
+ virtual ~JavaCodeGenerationPolicy ( );
+
+ // 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_autoGenerateConstructors;
+ bool m_autoGenerateAttribAccessors;
+ bool m_autoGenerateAssocAccessors;
+
+};
+
+#endif // JAVACODEGENERATIONPOLICY_H