Uses of Class
javax.beans.binding.BindingConverter

Packages that use BindingConverter
javax.beans.binding The classes in this package, and subpackages, provide a way to bind two properties of two objects together. 
 

Uses of BindingConverter in javax.beans.binding
 

Methods in javax.beans.binding that return BindingConverter
 BindingConverter Binding.getConverter()
          Returns the BindingConverter used to convert values.
 BindingConverter Binding.getSourceToTargetConverter(java.lang.Class<?> sourceType, java.lang.Object sourceValue, java.lang.Class<?> targetType)
          Returns the BindingConverter used to convert the source value to the target value.
 BindingConverter Binding.getTargetToSourceConverter(java.lang.Class<?> targetType, java.lang.Object targetValue, java.lang.Class<?> sourceType)
          Returns the BindingConverter used to convert the target value to the source value.
 

Methods in javax.beans.binding with parameters of type BindingConverter
 void Binding.setConverter(BindingConverter converter)
          Sets the BindingConverter used to convert values.