umbrello  2.32.1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
javacodeoperation.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 JAVACODEOPERATION_H
13 #define JAVACODEOPERATION_H
14 
15 #include "codeoperation.h"
16 
17 #include <QString>
18 
20 
21 class JavaCodeOperation : virtual public CodeOperation
22 {
23  Q_OBJECT
24 public:
25 
29  JavaCodeOperation (JavaClassifierCodeDocument * doc, UMLOperation * op, const QString & body = QString(), const QString & comment = QString());
30 
34  virtual ~JavaCodeOperation ();
35 
36  virtual int lastEditableLine();
37 
38 protected:
39 
41 
42 };
43 
44 #endif // JAVACODEOPERATION_H
Definition: codeoperation.h:24
Definition: javaclassifiercodedocument.h:33
Definition: javacodeoperation.h:22
JavaCodeOperation(JavaClassifierCodeDocument *doc, UMLOperation *op, const QString &body=QString(), const QString &comment=QString())
Definition: javacodeoperation.cpp:21
virtual ~JavaCodeOperation()
Definition: javacodeoperation.cpp:32
void updateMethodDeclaration()
Definition: javacodeoperation.cpp:37
virtual int lastEditableLine()
Definition: javacodeoperation.cpp:110
Definition: operation.h:25