blob: f6ba8c61284002d4c7f15ba5d8c30c9c36e7e171 [file] [log] [blame]
// 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;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.valid.ValidatorException;
/**
*
*/
public interface TranslatedFieldSupport
{
/**
* Formats the field translation.
*
* @param field
* The field the value is being formatted for.
* @param object
* The object value to be formatted.
*
* @return The formatted string value of the given object.
*/
String format(TranslatedField field, Object object);
/**
* Parses the field value.
* @param field
* The field to parse the value from.
* @param text
* The input text.
*
* @return The parsed field value in its translated object form.
* @throws ValidatorException On validation error.
*/
Object parse(TranslatedField field, String text)
throws ValidatorException;
/**
* Renders client side / misc contributions when the field is being rendered.
*
* @param field
* The field being rendered.
* @param writer
* The markup writer to use.
* @param cycle
* The current request.
*/
void renderContributions(TranslatedField field, IMarkupWriter writer, IRequestCycle cycle);
}