umbrello  2.31.90
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
javacodeclassfield.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 JAVACODECLASSFIELD_H
13 #define JAVACODECLASSFIELD_H
14 
15 #include "codeclassfield.h"
16 
17 #include <QString>
18 
20 
22 {
23  Q_OBJECT
24 public:
25 
31 
35  virtual ~JavaCodeClassField ();
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 // JAVACODECLASSFIELD_H
Definition: classifiercodedocument.h:33
Definition: codeclassfield.h:30
Definition: javacodeclassfield.h:22
QString getInitialValue()
Definition: javacodeclassfield.cpp:59
virtual ~JavaCodeClassField()
Definition: javacodeclassfield.cpp:36
JavaCodeClassField(ClassifierCodeDocument *parentDoc, UMLRole *role)
Definition: javacodeclassfield.cpp:26
QString getFieldName()
Definition: javacodeclassfield.cpp:40
QString getTypeName()
Definition: javacodeclassfield.cpp:83
QString getFieldType()
Sets up attribute information.
Definition: attribute.h:28
Definition: umlrole.h:25