| javax.microedition.lcdui.TickerLF
All known Subclasses: javax.microedition.lcdui.TickerLFImpl,
TickerLF | interface TickerLF (Code) | | Look and Feel interface used by Ticker.
See Naming Conventions
for information about method naming conventions.
|
Method Summary | |
public void | lSetOwner(DisplayableLF owner) Allows TickerLFImpl to have access to DisplayableLFImpl and vice versa. | void | lSetString(String str) Notifies TickerLF implementation class of a new ticker string set. |
lSetOwner | public void lSetOwner(DisplayableLF owner)(Code) | | Allows TickerLFImpl to have access to DisplayableLFImpl and vice versa.
This is
needed for implementations where the ticker is operated through the
Displayable directly.
Parameters: owner - the last Displayable this ticker was set to |
lSetString | void lSetString(String str)(Code) | | Notifies TickerLF implementation class of a new ticker string set.
If this ticker is active
and is on the display, it immediately begins showing the new string.
Parameters: str - string to be set for the Ticker it is guaranteed to be non-null |
|
|