umbrello 25.07.70
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
javaimport.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-2.0-or-later
3 SPDX-FileCopyrightText: 2006-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4*/
5
6#ifndef JAVAIMPORT_H
7#define JAVAIMPORT_H
8
10
18{
19public:
20 explicit JavaImport(CodeImpThread *thread = nullptr);
21 virtual ~JavaImport();
22 QString fileExtension();
23
24protected:
25 bool parseStmt();
26
27 void spawnImport(const QString& file);
28};
29
30#endif
31
Definition codeimpthread.h:22
Definition javacsvalaimportbase.h:19
Definition javaimport.h:18
QString fileExtension()
Definition javaimport.cpp:48
void spawnImport(const QString &file)
Definition javaimport.cpp:57
bool parseStmt()
Definition javaimport.cpp:77
virtual ~JavaImport()
Definition javaimport.cpp:44