public abstract class AttributeConverterFactory
extends java.lang.Object
This class is designed to allow developers to specify Converters for Gantt
attributes on an attribute by attribute basis. When an AttributeConverterFactory
is specified for a given Gantt, the Gantt will use the Converter returned by the
getAttributeConverter(String attribute) method to format each attribute that is
rendered within a tooltip, context menu, and the information panel of the legend.
The attribute Strings used by the Gantt components include:
"taskName"
"taskType"
"resourceName"
"startTime"
"endTime"
"actualStartTime"
"actualEndTime"
"completedThrough"
"time"
"SETUP"
"RUN"
"AVAILABLE"
For the tooltips shown during task resizes and moves, the "startTime",
"endTime", and "completedThrough" attribute values will only reflect the
formatting specified by the Converter if the Converter implements the
org.apache.myfaces.trinidad.convert.ClientConverter interface.