|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Component | |
fds.micro.ui | |
fds.micro.ui.events |
Uses of Component in fds.micro.ui |
Subclasses of Component in fds.micro.ui | |
class |
Button
This class implements a simple button without move effect when activated. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
CheckBox
This class implements a check box with a label. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
DigitTextField
This class implements a text field that accepts only digit from zero to nine. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
ExclusiveChoice
This class implements an component that provide a way to select an exclusive choice between several ones. |
class |
GraphicItem
This class implements an component that display a graphic shape. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
Hyperlink
This class implements a simple hyperlink without special visual effect when activated. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
ImageItem
This class implements an component that display a non interactive image. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
Slider
This class implements a slider. |
class |
StringItem
This class implements an component that display a non interactive string. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
class |
TextField
This class implements a very basic text field. An object of this class is dedicated to be used within an object of fds.micro.ui.AbstractPanel sub-class (J2ME). |
Methods in fds.micro.ui that return Component | |
Component |
AbstractPanel.replace(Component component,
int index)
Replace a component into the container at a given position. |
Methods in fds.micro.ui with parameters of type Component | |
void |
AbstractPanel.append(Component component)
Add a component to the container. |
Component |
AbstractPanel.replace(Component component,
int index)
Replace a component into the container at a given position. |
void |
AbstractPanel.insert(Component component,
int index)
Inserts the specified component as a component in this container at the specified index (paint order). |
boolean |
AbstractPanel.contains(Component component)
Tests if the specified component is a component in this container. |
int |
AbstractPanel.indexOf(Component component)
Searches for the first occurence of the given component, testing for equality using the equals method. |
int |
AbstractPanel.indexOf(Component component,
int index)
Searches for the first occurence of the given component, beginning the search at index, and testing for equality using the equals method. |
int |
AbstractPanel.lastIndexOf(Component component)
Returns the index of the last occurrence of the specified component in this container. |
int |
AbstractPanel.lastIndexOf(Component component,
int index)
Returns the index of the last occurrence of the specified component in this container, starting from the specified index. |
void |
XYPanel.append(Component component,
int x,
int y)
Add an component to the container. |
Uses of Component in fds.micro.ui.events |
Methods in fds.micro.ui.events that return Component | |
Component |
ContainerEvent.getComponent()
Get the added or removed component. |
Component |
FocusEvent.getOppositeComponent()
Get the opposite component. |
Constructors in fds.micro.ui.events with parameters of type Component | |
ActionEvent(Component source)
Build an empty action event. |
|
ActionEvent(Component source,
java.lang.String command)
Build an action event raised by the given command. |
|
ComponentEvent(Component source,
int type)
Build a component event raised by given source component. |
|
ContainerEvent(AbstractPanel source,
int type,
Component component)
Build an component event raised by given source component. |
|
FocusEvent(Component source,
int type)
Build a focus event raised by given source component. |
|
FocusEvent(Component source,
int type,
Component oppositeComponent)
Build a focus event raised by given source component. |
|
ValueChangeEvent(Component source,
java.lang.String oldValue,
java.lang.String newValue)
Build an event with given arguments. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |