2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2014-01-15 16:58:52 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2014-01-15 16:58:52 +01:00
|
|
|
|
2014-09-26 09:14:03 +02:00
|
|
|
#include <texteditor/texteditor.h>
|
2014-01-15 16:58:52 +01:00
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-09-26 11:37:54 +02:00
|
|
|
class JavaEditorFactory : public TextEditor::TextEditorFactory
|
2014-01-15 16:58:52 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2014-08-20 01:09:56 +02:00
|
|
|
JavaEditorFactory();
|
2014-01-15 16:58:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2014-04-17 16:40:05 +03:00
|
|
|
} // namespace Android
|