Class DateFormatter

    • Method Detail

      • init

        public void init​(Object data)
        Initialize the application tool. The data parameter holds a different type depending on how the tool is being instantiated:
        • For global tools data will be null
        • For request tools data will be of type RunData
        • For session and persistent tools data will be of type User
        Specified by:
        init in interface ApplicationTool
        Parameters:
        data - initialization data
      • refresh

        public void refresh()
        Refresh the application tool. This is necessary for development work where you probably want the tool to refresh itself if it is using configuration information that is typically cached after initialization
        Specified by:
        refresh in interface ApplicationTool
      • format

        public String format​(Date theDate)
        Formats the given date as a String using the default date format. The default date format is MM/dd/yyyy
        Parameters:
        theDate - date to format
        Returns:
        String value of the date
      • format

        public String format​(Date theDate,
                             String dateFormatString)
        Formats the given date as a String.
        Parameters:
        theDate - date to format
        dateFormatString - format string to use. See java.text.SimpleDateFormat for details.
        Returns:
        String value of the date