Package org.apache.tapestry.form.translator

Source Code of org.apache.tapestry.form.translator.FormatTranslator

// Copyright 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.form.translator;

import java.text.Format;
import java.text.ParseException;
import java.util.Locale;

import org.apache.hivemind.HiveMind;
import org.apache.hivemind.util.PropertyUtils;
import org.apache.tapestry.form.IFormComponent;
import org.apache.tapestry.form.ValidationMessages;
import org.apache.tapestry.valid.ValidationConstraint;
import org.apache.tapestry.valid.ValidatorException;

/**
* Abstract {@link Translator} implementation for {@link java.text.Format}-based translators.
*
* @author Paul Ferraro
* @since 4.0
*/
public abstract class FormatTranslator extends AbstractTranslator
{
    private String _pattern;

    public FormatTranslator()
    {
        _pattern = defaultPattern();
    }

    //TODO: Needed until HIVEMIND-134 fix is available
    public FormatTranslator(String initializer)
    {
        PropertyUtils.configureProperties(this, initializer);

        if (HiveMind.isBlank(_pattern))
        {
            _pattern = defaultPattern();
        }
    }
   
    protected abstract String defaultPattern();

    /**
     * @see org.apache.tapestry.form.translator.AbstractTranslator#formatObject(org.apache.tapestry.form.IFormComponent,
     *      Locale, java.lang.Object)
     */
    protected String formatObject(IFormComponent field, Locale locale, Object object)
    {
        // Get a new format each time, because (a) have to account for locale and (b) formatters are
        // not thread safe.

        Format format = getFormat(locale);

        return format.format(object);
    }

    /**
     * @see org.apache.tapestry.form.translator.AbstractTranslator#parseText(org.apache.tapestry.form.IFormComponent,
     *      ValidationMessages, java.lang.String)
     */
    protected Object parseText(IFormComponent field, ValidationMessages messages, String text)
            throws ValidatorException
    {
        Format format = getFormat(messages.getLocale());
       
        try
        {
            return format.parseObject(text);
        }
        catch (ParseException ex)
        {
            throw new ValidatorException(buildMessage(messages, field, getMessageKey()),
                    getConstraint());
        }
    }

    protected abstract ValidationConstraint getConstraint();

    protected abstract Format getFormat(Locale locale);

    protected abstract String getMessageKey();

    public String getPattern()
    {
        return _pattern;
    }

    public void setPattern(String pattern)
    {
        _pattern = pattern;
    }
}
TOP

Related Classes of org.apache.tapestry.form.translator.FormatTranslator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.