| java.lang.Object example.bluetooth.demo.GUIImageServer
GUIImageServer | final class GUIImageServer implements CommandListener(Code) | | Allows to customize the images list to be published,
creates the corresponding service record to describe this list
and send the images to clients by request.
version: , |
Method Summary | |
public void | commandAction(Command c, Displayable d) Process the command event. | void | completeInitialization(boolean isBTReady) We have to provide this method due to "do not do network
operation in command listener method" restriction, which
is caused by crooked midp design. | void | destroy() Destroys this component. | String | getImageFileName(String imgName) Gets the image file name from its title (label). |
GUIImageServer | GUIImageServer(DemoMIDlet parent)(Code) | | Constructs images server GUI.
|
commandAction | public void commandAction(Command c, Displayable d)(Code) | | Process the command event.
Parameters: c - - the issued command. Parameters: d - - the screen object the command was issued for. |
completeInitialization | void completeInitialization(boolean isBTReady)(Code) | | We have to provide this method due to "do not do network
operation in command listener method" restriction, which
is caused by crooked midp design.
This method is called by BTImageServer after it is done
with bluetooth initialization and next screen is ready
to appear.
|
destroy | void destroy()(Code) | | Destroys this component.
|
getImageFileName | String getImageFileName(String imgName)(Code) | | Gets the image file name from its title (label).
|
|
|