forked from qt-creator/qt-creator
Change-Id: I8d5113c7916f816d34a1eacc0b978645d710b2be Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
30 lines
791 B
C++
30 lines
791 B
C++
// Copyright (C) 2016 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <projectexplorer/ioutputparser.h>
|
|
|
|
#include <utils/filepath.h>
|
|
|
|
namespace Android::Internal {
|
|
|
|
class JavaParser : public ProjectExplorer::OutputTaskParser
|
|
{
|
|
public:
|
|
JavaParser();
|
|
|
|
void setProjectFileList(const Utils::FilePaths &fileList);
|
|
void setBuildDirectory(const Utils::FilePath &buildDirectory);
|
|
void setSourceDirectory(const Utils::FilePath &sourceDirectory);
|
|
|
|
private:
|
|
Result handleLine(const QString &line, Utils::OutputFormat type) final;
|
|
|
|
Utils::FilePaths m_fileList;
|
|
Utils::FilePath m_sourceDirectory;
|
|
Utils::FilePath m_buildDirectory;
|
|
};
|
|
|
|
} // Android::Internal
|