waba.sys
Class Settings

java.lang.Object
  |
  +--waba.sys.Settings

public class Settings
extends java.lang.Object

this class provides some preferences from palms config.


Field Summary
static byte DATE_DMY
          day month year
static byte DATE_MDY
          month day year
static byte DATE_YMD
          year month day
static byte dateFormat
          can be one of the following constants: DATE_MDY, DATE_DMY, DATE_YMD; where m = month, d = day and y = year
static char dateSeparator
          the date char separator.
static char decimalSeparator
          the decimal separator for numbers
static boolean is24Hour
          true if the time format is 24 hour format or if it is the AM/PM format
static int screenHeight
          the screen height in pixels
static int screenWidth
          the screen width in pixels
static char thousandsSeparator
          the thousands separator for numbers
static char timeSeparator
          the time char separator
static byte weekStart
          the week day start. 0 = sunday, 6 = saturday
 
Method Summary
static java.lang.String getString()
           
 
Methods inherited from class java.lang.Object
hashCode, toString
 

Field Detail

DATE_MDY

public static final byte DATE_MDY
month day year

DATE_DMY

public static final byte DATE_DMY
day month year

DATE_YMD

public static final byte DATE_YMD
year month day

dateFormat

public static byte dateFormat
can be one of the following constants: DATE_MDY, DATE_DMY, DATE_YMD; where m = month, d = day and y = year

dateSeparator

public static char dateSeparator
the date char separator.

weekStart

public static byte weekStart
the week day start. 0 = sunday, 6 = saturday

is24Hour

public static boolean is24Hour
true if the time format is 24 hour format or if it is the AM/PM format

timeSeparator

public static char timeSeparator
the time char separator

thousandsSeparator

public static char thousandsSeparator
the thousands separator for numbers

decimalSeparator

public static char decimalSeparator
the decimal separator for numbers

screenWidth

public static int screenWidth
the screen width in pixels

screenHeight

public static int screenHeight
the screen height in pixels
Method Detail

getString

public static java.lang.String getString()