com.atlassian.confluence.it
Class TestingFormatSettingsManager

java.lang.Object
  extended by com.atlassian.confluence.it.TestingFormatSettingsManager
All Implemented Interfaces:
FormatSettingsManager

public class TestingFormatSettingsManager
extends java.lang.Object
implements FormatSettingsManager


Constructor Summary
TestingFormatSettingsManager()
           
 
Method Summary
 java.lang.String getDateFormat()
          Returns the formatting pattern used for dates.
 java.lang.String getDateTimeFormat()
          Returns the formatting pattern used for date and time together.
 java.lang.String getDayFormat()
          Returns the formatting pattern used for date.
 java.lang.String getDecimalNumberFormat()
          Returns the formatting pattern used for decimal numbers.
 java.lang.String getLongNumberFormat()
          Returns the formatting pattern used for integer numbers.
 java.lang.String getTimeFormat()
          Returns the formatting pattern used for times.
 void setDateFormat(java.lang.String pattern)
          Stores the formatting pattern to be used for dates.
 void setDateTimeFormat(java.lang.String pattern)
          Stores the formatting pattern to be used for date and time together.
 void setDayFormat(java.lang.String pattern)
           
 void setDecimalNumberFormat(java.lang.String pattern)
          Stores the formatting pattern to be used for decimal numbers.
 void setLongNumberFormat(java.lang.String pattern)
          Stores the formatting pattern to be used for integer numbers.
 void setTimeFormat(java.lang.String pattern)
          Stores the formatting pattern to be used for times.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TestingFormatSettingsManager

public TestingFormatSettingsManager()
Method Detail

getDateFormat

public java.lang.String getDateFormat()
Description copied from interface: FormatSettingsManager
Returns the formatting pattern used for dates. Typically something like "d MMM, yyyy".

Specified by:
getDateFormat in interface FormatSettingsManager

setDateFormat

public void setDateFormat(java.lang.String pattern)
Description copied from interface: FormatSettingsManager
Stores the formatting pattern to be used for dates.

Specified by:
setDateFormat in interface FormatSettingsManager
Parameters:
pattern - a pattern compatible with SimpleDateFormat

getTimeFormat

public java.lang.String getTimeFormat()
Description copied from interface: FormatSettingsManager
Returns the formatting pattern used for times. Typically something like "h:mm a".

Specified by:
getTimeFormat in interface FormatSettingsManager

setTimeFormat

public void setTimeFormat(java.lang.String pattern)
Description copied from interface: FormatSettingsManager
Stores the formatting pattern to be used for times.

Specified by:
setTimeFormat in interface FormatSettingsManager
Parameters:
pattern - a pattern compatible with SimpleDateFormat

getDateTimeFormat

public java.lang.String getDateTimeFormat()
Description copied from interface: FormatSettingsManager
Returns the formatting pattern used for date and time together. Typically something like "d MMM, yyyy HH:mm".

Specified by:
getDateTimeFormat in interface FormatSettingsManager

getDayFormat

public java.lang.String getDayFormat()
Description copied from interface: FormatSettingsManager
Returns the formatting pattern used for date. Typically something like "MMM dd"

Specified by:
getDayFormat in interface FormatSettingsManager
Returns:
the String representation of the date format

setDayFormat

public void setDayFormat(java.lang.String pattern)
Specified by:
setDayFormat in interface FormatSettingsManager
See Also:
FormatSettingsManager.getDayFormat()

setDateTimeFormat

public void setDateTimeFormat(java.lang.String pattern)
Description copied from interface: FormatSettingsManager
Stores the formatting pattern to be used for date and time together.

Specified by:
setDateTimeFormat in interface FormatSettingsManager
Parameters:
pattern - a pattern compatible with SimpleDateFormat

getLongNumberFormat

public java.lang.String getLongNumberFormat()
Description copied from interface: FormatSettingsManager
Returns the formatting pattern used for integer numbers. Typically something like "###############".

Specified by:
getLongNumberFormat in interface FormatSettingsManager

setLongNumberFormat

public void setLongNumberFormat(java.lang.String pattern)
Description copied from interface: FormatSettingsManager
Stores the formatting pattern to be used for integer numbers.

Specified by:
setLongNumberFormat in interface FormatSettingsManager
Parameters:
pattern - a pattern compatible with DecimalFormat

getDecimalNumberFormat

public java.lang.String getDecimalNumberFormat()
Description copied from interface: FormatSettingsManager
Returns the formatting pattern used for decimal numbers. Typically something like "###############.##########".

Specified by:
getDecimalNumberFormat in interface FormatSettingsManager

setDecimalNumberFormat

public void setDecimalNumberFormat(java.lang.String pattern)
Description copied from interface: FormatSettingsManager
Stores the formatting pattern to be used for decimal numbers.

Specified by:
setDecimalNumberFormat in interface FormatSettingsManager
Parameters:
pattern - a pattern compatible with DecimalFormat


Copyright © 2003-2008 Atlassian Pty Ltd. All Rights Reserved.