This interface of the com.ms.wfc.data package defines the data formatting interface.
public interface IDataFormat { // Methods public void addOnFormatChanged(EventHandler handler); public Object format(Locale locale, Object data); public void removeOnFormatChanged(EventHandler handler); public Object unformat(Locale locale, Object data); }
Classes that implement the IDataFormat interface can format data that is presented to the user. The DataFormat class is an abstract implementation of this interface.