/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
if (m_options.count("-T"_ostr) > 0)
{
OString tmp = m_options["-T"_ostr] + ";" + s;
m_options["-T"_ostr] = tmp;
} else
{
m_options["-T"_ostr] = OString(s);
} break; case'G': if (av[i][2] == 'c')
{ if (av[i][3] != '\0')
{
OString tmp("'-Gc', please check"_ostr); if (i <= ac - 1)
{
tmp += OString::Concat(" your input '") + av[i] + "'";
}
throw IllegalArgument(tmp);
}
m_options["-Gc"_ostr] = OString(); break;
} elseif (av[i][2] != '\0')
{
OString tmp("'-G', please check"_ostr); if (i <= ac - 1)
{
tmp += OString::Concat(" your input '") + av[i] + "'";
}
throw IllegalArgument(tmp);
}
m_options["-G"_ostr] = OString(); break; case'X': // support for eXtra type rdbs
{ if (av[i][2] == '\0')
{ if (i < ac - 1 && av[i+1][0] != '-')
{
i++;
s = av[i];
} else
{
OString tmp("'-X', please check"_ostr); if (i <= ac - 1)
{
tmp += OString::Concat(" your input '") + av[i+1] + "'";
}
OString JavaOptions::prepareHelp()
{
OString help = "\nusing: " +
m_program + " [-options] file_1 ... file_n -Xfile_n+1 -Xfile_n+2\nOptions:\n" " -O = path describes the root directory for the generated output.\n" " The output directory tree is generated under this directory.\n" " -T = name specifies a type or a list of types. The output for this\n" " [t1;...] type and all dependent types are generated. If no '-T' option is\n" " specified, then output for all types is generated.\n" " Example: 'com.sun.star.uno.XInterface' is a valid type.\n" " -nD = no dependent types are generated.\n" " -G = generate only target files which does not exists.\n" " -Gc = generate only target files which content will be changed.\n" " -X = extra types which will not be taken into account for generation.\n\n" +
prepareVersion();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.