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 item)Returns a ChoiceGroup look & feel implementation.
ChoiceGroup cg = item;
if (cg.choiceType == Choice.POPUP) {
return new ChoiceGroupPopupLFImpl(cg);
} else {
return new ChoiceGroupLFImpl(cg);
}
|
CustomItemLF | getCustomItemLF(CustomItem item)Returns a CustomItem look & feel implementation.
return new CustomItemLFImpl(item);
|
DateFieldLF | getDateFieldLF(DateField item)Returns a DateField look & feel implementation.
return new DateFieldLFImpl(item);
|
FormLF | getFormLF(Form f)Returns a Form look & feel implementation.
return new FormLFImpl(f, f.items, f.numOfItems);
|
GaugeLF | getGaugeLF(Gauge item)Returns a Gauge look & feel implementation.
return new GaugeLFImpl(item);
|
ImageItemLF | getImageItemLF(ImageItem item)Returns an ImageItem look & feel implementation.
return new ImageItemLFImpl(item);
|
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 item)Returns a StringItem look & feel implementation.
return new StringItemLFImpl(item);
|
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 TextBoxLFImpl(tf);
|
TextFieldLF | getTextFieldLF(TextField tf)Returns a TextField look & feel implementation.
return new TextFieldLFImpl(tf);
|
TickerLF | getTickerLF(Ticker ticker)Returns a Ticker look and feel implementation.
return new TickerLFImpl(ticker);
|