1 package org.apache.lucene.messages;
 
   4  * Licensed to the Apache Software Foundation (ASF) under one or more
 
   5  * contributor license agreements. See the NOTICE file distributed with this
 
   6  * work for additional information regarding copyright ownership. The ASF
 
   7  * licenses this file to You under the Apache License, Version 2.0 (the
 
   8  * "License"); you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  * http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
  15  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
  16  * License for the specific language governing permissions and limitations under
 
  20 public class MessagesTestBundle extends NLS {
 
  22   private static final String BUNDLE_NAME = MessagesTestBundle.class.getName();
 
  24   private MessagesTestBundle() {
 
  25     // should never be instantiated
 
  29     // register all string ids with NLS class and initialize static string
 
  31     NLS.initializeMessages(BUNDLE_NAME, MessagesTestBundle.class);
 
  34   // static string must match the strings in the property files.
 
  35   public static String Q0001E_INVALID_SYNTAX;
 
  36   public static String Q0004E_INVALID_SYNTAX_ESCAPE_UNICODE_TRUNCATION;
 
  38   // this message is missing from the properties file
 
  39   public static String Q0005E_MESSAGE_NOT_IN_BUNDLE;