umbrello  2.32.1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
cppcodeclassfield.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) 2003 Brian Thomas <thomas@mail630.gsfc.nasa.gov> *
8  * copyright (C) 2004-2020 *
9  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
10  ***************************************************************************/
11 
12 #ifndef CPPCODECLASSFIELD_H
13 #define CPPCODECLASSFIELD_H
14 
15 #include "codeclassfield.h"
16 
17 #include <QString>
18 
20 
22 {
23  Q_OBJECT
24 public:
25 
29  CPPCodeClassField (ClassifierCodeDocument * parentDoc, UMLRole * role);
31 
35  virtual ~CPPCodeClassField ();
36 
37  QString getFieldType();
38  QString getFieldName();
39  QString getInitialValue();
40 
45  QString getListFieldClassName();
46 
47 
48 protected:
49 
50 private:
51 
52 };
53 
54 #endif // CPPCODECLASSFIELD_H
Definition: cppcodeclassfield.h:22
QString getFieldName()
Definition: cppcodeclassfield.cpp:39
CPPCodeClassField(ClassifierCodeDocument *parentDoc, UMLRole *role)
Definition: cppcodeclassfield.cpp:25
virtual ~CPPCodeClassField()
Definition: cppcodeclassfield.cpp:35
QString getInitialValue()
Definition: cppcodeclassfield.cpp:65
QString getListFieldClassName()
Definition: cppcodeclassfield.cpp:58
QString getFieldType()
Definition: classifiercodedocument.h:33
Definition: codeclassfield.h:30
Sets up attribute information.
Definition: attribute.h:28
Definition: umlrole.h:25