/*
   Title:       CustomFormatter.as
   Description: defines the class "mx.data.binding.CustomFormatter"
   Copyright:   Copyright (c) 2003
   Company:     Macromedia, Inc.
   Author:      Mark Shepherd
   Version:     1.0
*/

/**
	This defines a class that must be the parent of
	classes used by the Custom Formatter.

	@class CustomFormatter
*/
class mx.data.binding.CustomFormatter
{
	// convert a raw value, returns a formatted value
	function format(rawValue)
	{
	}
	
	// convert a formatted value, returns a raw value
	function unformat(formattedValue)
	{
	}
	
} // mx.data.binding.CustomFormatter
