com.atlassian.confluence.it
Class TestingFormatSettingsManager

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

public class TestingFormatSettingsManager
extends Object
implements FormatSettingsManager


Constructor Summary
TestingFormatSettingsManager()
           
 
Method Summary
 String getDateFormat()
          Returns the formatting pattern used for dates.
 String getDateTimeFormat()
          Returns the formatting pattern used for date and time together.
 String getDecimalNumberFormat()
          Returns the formatting pattern used for decimal numbers.
 String getEditorBlogPostDate()
          Returns the date time format for the editor blog post date
 String getLongNumberFormat()
          Returns the formatting pattern used for integer numbers.
 String getTimeFormat()
          Returns the formatting pattern used for times.
 void setDateFormat(String pattern)
          Stores the formatting pattern to be used for dates.
 void setDateTimeFormat(String pattern)
          Stores the formatting pattern to be used for date and time together.
 void setDecimalNumberFormat(String pattern)
          Stores the formatting pattern to be used for decimal numbers.
 void setLongNumberFormat(String pattern)
          Stores the formatting pattern to be used for integer numbers.
 void setTimeFormat(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 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(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 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(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 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

getEditorBlogPostDate

public String getEditorBlogPostDate()
Description copied from interface: FormatSettingsManager
Returns the date time format for the editor blog post date

Specified by:
getEditorBlogPostDate in interface FormatSettingsManager

setDateTimeFormat

public void setDateTimeFormat(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 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(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 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(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-2013 Atlassian. All Rights Reserved.