Methods Summary |
---|
AlertLF | getAlertLF(Alert a)Returns an Alert look & feel implementation.
return new AlertLFImpl(a);
|
CanvasLF | getCanvasLF(Canvas c)Returns a Canvas look & feel implementation.
return new CanvasLFImpl(c);
|
ChoiceGroupLF | getChoiceGroupLF(ChoiceGroup cg)Returns a ChoiceGroup look & feel implementation.
return new ChoiceGroupLFImpl(cg);
|
CustomItemLF | getCustomItemLF(CustomItem ci)Returns a CustomItem look & feel implementation.
return new CustomItemLFImpl(ci);
|
DateFieldLF | getDateFieldLF(DateField df)Returns a DateField look & feel implementation.
return new DateFieldLFImpl(df);
|
FormLF | getFormLF(Form f)Returns a Form look & feel implementation.
return new FormLFImpl(f, f.items, f.numOfItems);
|
GaugeLF | getGaugeLF(Gauge g)Returns a Gauge look & feel implementation.
return new GaugeLFImpl(g);
|
ImageItemLF | getImageItemLF(ImageItem imgItem)Returns an ImageItem look & feel implementation.
return new ImageItemLFImpl(imgItem);
|
FormLF | getListLF(List list)Returns a List look & feel implementation.
return new FormLFImpl(list, list.cg);
|
SpacerLF | getSpacerLF(Spacer spacer)Returns a Spacer look & feel implementation.
return new SpacerLFImpl(spacer);
|
StringItemLF | getStringItemLF(StringItem strItem)Returns a StringItem look & feel implementation.
return new StringItemLFImpl(strItem);
|
FormLF | getTextBoxFormLF(TextBox tb)Returns a TextBox look & feel implementation.
return new FormLFImpl(tb, tb.textField);
|
TextFieldLF | getTextBoxLF(TextField tf)Returns a TextField look & feel implementation
for use in a TextBox screen.
return new TextFieldLFImpl(tf);
|
TextFieldLF | getTextFieldLF(TextField tf)Returns a TextField look & feel implementation.
return new TextFieldLFImpl(tf);
|
TickerLF | getTickerLF(Ticker ticker)Returns a Ticker look & feel implementation.
return new TickerLFImpl(ticker);
|