umbrello  2.39.2
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  SPDX-License-Identifier: GPL-2.0-or-later
3 
4  SPDX-FileCopyrightText: 2007 Jari-Matti Mäkelä <jmjm@iki.fi>
5  SPDX-FileCopyrightText: 2008-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
6 */
7 
8 #ifndef DCODECLASSFIELD_H
9 #define DCODECLASSFIELD_H
10 
11 #include "codeclassfield.h"
12 
13 #include <QString>
14 
16 
18 {
19  Q_OBJECT
20 public:
21 
25  DCodeClassField (ClassifierCodeDocument * parentDoc, UMLRole * role);
26  DCodeClassField (ClassifierCodeDocument * parentDoc, UMLAttribute * attrib);
27 
31  virtual ~DCodeClassField ();
32 
33  QString getFieldType();
34  QString getFieldName();
35  QString getInitialValue();
36 
37  QString getTypeName ();
38 protected:
39 
40 private:
41 
42  // void initDeclCodeBlock ();
43 
44 };
45 
46 #endif // DCODECLASSFIELD_H
Definition: classifiercodedocument.h:29
Definition: codeclassfield.h:26
Definition: dcodeclassfield.h:18
virtual ~DCodeClassField()
Definition: dcodeclassfield.cpp:36
QString getFieldType()
QString getFieldName()
Definition: dcodeclassfield.cpp:40
DCodeClassField(ClassifierCodeDocument *parentDoc, UMLRole *role)
Definition: dcodeclassfield.cpp:26
QString getInitialValue()
Definition: dcodeclassfield.cpp:61
QString getTypeName()
Definition: dcodeclassfield.cpp:86
Sets up attribute information.
Definition: attribute.h:23
Definition: umlrole.h:20