All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jgoodies.binding.value.BindingConverter Maven / Gradle / Ivy

Go to download

The JGoodies Binding library connects object properties to Swing user interface components. And it helps you represent the state and behavior of a presentation independently of the GUI components used in the interface.

There is a newer version: 2.13.0
Show newest version
/*
 * Copyright (c) 2012-2013 JGoodies Software GmbH. All Rights Reserved.
 *
 * This software is the proprietary information of JGoodies Software GmbH.
 * Use is subject to license terms.
 *
 */

package com.jgoodies.binding.value;

import java.text.Format;




/**
 * Describes an object that converts values from a binding target
 * to a binding source and vice versa.

* * Used by the binder mechanism to introduce a conversion in the binding chain * from source to target. Often the binding source is a bean property * that has been turned into a ValueModel. The binding target is typically * a user interface component, e.g. combo box or text field.

* * Example:
* binder.bindBeanProperty("price").converted(currencyConverter).to(priceField); *

* * This conversion is similar to the String conversion of the Format class, * where {@link Format#format(Object)} equates to {@link #targetValue(Object)}, * and {@link Format#parseObject(String)} to {@link #sourceValue(Object)}.

* * Binding converters should be used judiciously; they can be limited * w.r.t. to localized formatting conventions. When binding non-String values * to a text UI component, consider using a {@link javax.swing.JFormattedTextField}. * Formatted text fields provide a powerful means to convert strings to objects * and handle many cases that arise around invalid input. * * @author Karsten Lentzsch * @version $Revision: 1.4 $ * * @since 2.7 */ public interface BindingConverter { /** * Returns the converted source value for use by the binding target. * * Equates to {@link Format#format(Object)} if the target * accepts and provides Strings. * * @param sourceValue the value to convert * @return the converted value */ Object targetValue(Object sourceValue); /** * Returns the converted target value for use by the binding source. * * Equates to {@link Format#parseObject(String)} if the target * accepts and provides Strings. * * @param targetValue the value to convert * @return the converted value */ Object sourceValue(Object targetValue); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy