umbrello  2.31.70
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
dcodeclassfield.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2007 Jari-Matti Mäkelä <jmjm@iki.fi> *
8  * copyright (C) 2008-2020 *
9  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
10  ***************************************************************************/
11 
12 #ifndef DCODECLASSFIELD_H
13 #define DCODECLASSFIELD_H
14 
15 #include "codeclassfield.h"
16 
17 #include <QString>
18 
20 
22 {
23  Q_OBJECT
24 public:
25 
29  DCodeClassField (ClassifierCodeDocument * parentDoc, UMLRole * role);
30  DCodeClassField (ClassifierCodeDocument * parentDoc, UMLAttribute * attrib);
31 
35  virtual ~DCodeClassField ();
36 
37  QString getFieldType();
38  QString getFieldName();
39  QString getInitialValue();
40 
41  QString getTypeName ();
42 protected:
43 
44 private:
45 
46  // void initDeclCodeBlock ();
47 
48 };
49 
50 #endif // DCODECLASSFIELD_H
QString getFieldName()
Definition: dcodeclassfield.cpp:44
Definition: codeclassfield.h:29
Definition: classifiercodedocument.h:32
Sets up attribute information.
Definition: attribute.h:27
QString getInitialValue()
Definition: dcodeclassfield.cpp:65
QString getTypeName()
Definition: dcodeclassfield.cpp:90
DCodeClassField(ClassifierCodeDocument *parentDoc, UMLRole *role)
Definition: dcodeclassfield.cpp:30
virtual ~DCodeClassField()
Definition: dcodeclassfield.cpp:40
QString getFieldType()
Definition: umlrole.h:24
Definition: dcodeclassfield.h:21