umbrello  2.39.2
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  SPDX-License-Identifier: GPL-2.0-or-later
3 
4  SPDX-FileCopyrightText: 2003 Brian Thomas <thomas@mail630.gsfc.nasa.gov>
5  SPDX-FileCopyrightText: 2004-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
6 */
7 
8 #ifndef JAVACODECLASSFIELD_H
9 #define JAVACODECLASSFIELD_H
10 
11 #include "codeclassfield.h"
12 
13 #include <QString>
14 
16 
18 {
19  Q_OBJECT
20 public:
21 
27 
31  virtual ~JavaCodeClassField ();
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 // JAVACODECLASSFIELD_H
Definition: classifiercodedocument.h:29
Definition: codeclassfield.h:26
Definition: javacodeclassfield.h:18
QString getInitialValue()
Definition: javacodeclassfield.cpp:55
virtual ~JavaCodeClassField()
Definition: javacodeclassfield.cpp:32
JavaCodeClassField(ClassifierCodeDocument *parentDoc, UMLRole *role)
Definition: javacodeclassfield.cpp:22
QString getFieldName()
Definition: javacodeclassfield.cpp:36
QString getTypeName()
Definition: javacodeclassfield.cpp:79
QString getFieldType()
Sets up attribute information.
Definition: attribute.h:23
Definition: umlrole.h:20