FileDocCategorySizeDatePackage
LFFactoryImpl.javaAPI DocphoneME MR2 API (J2ME)6306Wed May 02 18:00:22 BST 2007javax.microedition.lcdui

LFFactoryImpl

public class LFFactoryImpl extends LFFactory
This is a factory class for the look & feel classes.

Fields Summary
Constructors Summary
Methods Summary
AlertLFgetAlertLF(Alert a)
Returns an Alert look & feel implementation.

param
a The Alert associated with this look&feel
return
an Alert look & feel implementation

	return new AlertLFImpl(a);
    
CanvasLFgetCanvasLF(Canvas c)
Returns a Canvas look & feel implementation.

param
c The Canvas associated with this look&feel
return
a Canvas look & feel implementation

	return new CanvasLFImpl(c);
    
ChoiceGroupLFgetChoiceGroupLF(ChoiceGroup cg)
Returns a ChoiceGroup look & feel implementation.

param
cg The ChoiceGroup associated with this look&feel
return
a ChoiceGroup look & feel implementation

	return new ChoiceGroupLFImpl(cg);
    
CustomItemLFgetCustomItemLF(CustomItem ci)
Returns a CustomItem look & feel implementation.

param
ci The CustomItem associated with this look&feel
return
a CustomItem look & feel implementation

	return new CustomItemLFImpl(ci);
	
    
DateFieldLFgetDateFieldLF(DateField df)
Returns a DateField look & feel implementation.

param
df The DateField associated with this look&feel
return
a DateField look & feel implementation

	return new DateFieldLFImpl(df);
    
FormLFgetFormLF(Form f)
Returns a Form look & feel implementation.

param
f The Form associated with this look&feel
return
a Form look & feel implementation

	return new FormLFImpl(f, f.items, f.numOfItems);
    
GaugeLFgetGaugeLF(Gauge g)
Returns a Gauge look & feel implementation.

param
g The Gauge associated with this look&feel
return
a Gauge look & feel implementation

	return new GaugeLFImpl(g);
    
ImageItemLFgetImageItemLF(ImageItem imgItem)
Returns an ImageItem look & feel implementation.

param
imgItem The Alert associated with this look&feel
return
an ImageItem look & feel implementation

	return new ImageItemLFImpl(imgItem);
    
FormLFgetListLF(List list)
Returns a List look & feel implementation.

param
list The List associated with this look&feel
return
a List look & feel implementation

	return new FormLFImpl(list, list.cg);
    
SpacerLFgetSpacerLF(Spacer spacer)
Returns a Spacer look & feel implementation.

param
spacer The Spacer associated with this look&feel
return
a Spacer look & feel implementation

        return new SpacerLFImpl(spacer);
    
StringItemLFgetStringItemLF(StringItem strItem)
Returns a StringItem look & feel implementation.

param
strItem The StringItem associated with this look&feel
return
a StringItem look & feel implementation

	return new StringItemLFImpl(strItem);
    
FormLFgetTextBoxFormLF(TextBox tb)
Returns a TextBox look & feel implementation.

param
tb The TextBox associated with this look&feel
return
a TextBox look & feel implementation

	return new FormLFImpl(tb, tb.textField);
    
TextFieldLFgetTextBoxLF(TextField tf)
Returns a TextField look & feel implementation for use in a TextBox screen.

param
tf -
return
a TextField look & feel implementation

	return new TextFieldLFImpl(tf);
    
TextFieldLFgetTextFieldLF(TextField tf)
Returns a TextField look & feel implementation.

param
tf The TextField associated with this look&feel
return
a TextField look & feel implementation

	    return new TextFieldLFImpl(tf);
    
TickerLFgetTickerLF(Ticker ticker)
Returns a Ticker look & feel implementation.

param
ticker The Ticker associated with this look&feel
return
a Ticker look & feel implementation.

	return new TickerLFImpl(ticker);