blob: 8135925f5cc0977e1c12a240c8346bf51eea470b [file] [log] [blame]
using System;
using System.Globalization;
using System.Text;
namespace Lucene.Net.QueryParsers.Flexible.Messages
{
/*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/// <summary>
/// Default implementation of Message interface.
/// For Native Language Support (NLS), system of software internationalization.
/// </summary>
#if FEATURE_SERIALIZABLE
[Serializable]
#endif
public class Message : IMessage
{
private string key;
private object[] arguments = new object[0];
public Message(string key)
{
this.key = key;
}
public Message(string key, params object[] args)
: this(key)
{
this.arguments = args;
}
public virtual object[] GetArguments()
{
return (object[])this.arguments.Clone(); // LUCENENET specific: These are obviously not meant to be written to, so cloning the result
}
public virtual string Key => this.key;
public virtual string GetLocalizedMessage()
{
return GetLocalizedMessage(CultureInfo.CurrentUICulture);
}
public virtual string GetLocalizedMessage(CultureInfo locale)
{
return NLS.GetLocalizedMessage(Key, locale, GetArguments());
}
public override string ToString()
{
object[] args = GetArguments();
StringBuilder sb = new StringBuilder(Key);
if (args != null)
{
for (int i = 0; i < args.Length; i++)
{
sb.Append(i == 0 ? " " : ", ").Append(args[i]);
}
}
return sb.ToString();
}
}
}