blob: 601de58f01017ea02fa40cb359972c1362bf5693 [file] [log] [blame]
// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed 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.
package org.apache.tapestry.workbench.localization;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import org.apache.tapestry.form.IPropertySelectionModel;
/**
* @author Howard Lewis Ship
*/
public class LocaleModel implements IPropertySelectionModel
{
private Locale _locale;
private List _locales = new ArrayList();
public LocaleModel(Locale locale)
{
_locale = locale;
}
public void add(Locale locale)
{
_locales.add(locale);
}
private Locale get(int index)
{
return (Locale) _locales.get(index);
}
public String getLabel(int index)
{
return get(index).getDisplayName(_locale);
}
public int getOptionCount()
{
return _locales.size();
}
public Object getOption(int index)
{
return _locales.get(index);
}
/**
* Returns the String version of the integer index.
*/
public String getValue(int index)
{
return Integer.toString(index);
}
public boolean isDisabled(int index)
{
return false;
}
public Object translateValue(String value)
{
int index = Integer.parseInt(value);
return _locales.get(index);
}
}