/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* Formats error messages.
*/
class Messages
{
/** Loads a string resource and formats it with specified arguments. */
String text = ResourceBundle.getBundle(Messages.class.getPackage().getName() +".MessageBundle").getString(property);
}
//
//
// Message resources
//
//
"ConsoleErrorReporter.UnknownLocation";
"ConsoleErrorReporter.LineXOfY";
"ConsoleErrorReporter.UnknownFile";
"Driver.Public.Usage";
"Driver.Private.Usage";
"Driver.AddonUsage";
"Driver.ExperimentalLanguageWarning";
"Driver.NonExistentDir";
"Driver.MissingRuntimePackageName";
"Driver.MissingModeOperand";
"Driver.MissingCompatibilityOperand";
"Driver.MISSING_PROXY";
"Driver.MISSING_PROXYFILE";
"Driver.NO_SUCH_FILE";
"Driver.ILLEGAL_PROXY";
"Driver.ILLEGAL_TARGET_VERSION";
"Driver.MissingOperand";
"Driver.MissingProxyHost";
"Driver.MissingProxyPort";
"Driver.StackOverflow";
"Driver.UnrecognizedMode";
"Driver.UnrecognizedParameter";
"Driver.UnsupportedEncoding";
"Driver.MissingGrammar";
"Driver.ParsingSchema";
"Driver.ParseFailed";
"Driver.CompilingSchema";
"Driver.FailedToGenerateCode";
"Driver.FilePrologComment";
"Driver.DateFormat";
"Driver.TimeFormat";
"Driver.At";
"Driver.Version";
"Driver.FullVersion";
"Driver.BuildID";
"Driver.ErrorMessage";
"Driver.WarningMessage";
"Driver.InfoMessage";
"Driver.NotABindingFile";
"ModelLoader.TooManySchema";
"ModelLoader.BindingFileNotSupportedForRNC";
"Driver.DefaultVersion";
"Driver.DefaultPackageWarning";
"Driver.NotAValidFileName";
"Driver.FailedToParse";
"Driver.NotAFileNorURL";
"FIELD_RENDERER_CONFLICT";
"NAME_CONVERTER_CONFLICT";
"FAILED_TO_LOAD";
"PLUGIN_LOAD_FAILURE";
}