A B C D E F G H I L M N O P Q R S T U W

A

ActionCommand - Class in com.emarson.lemonade.bluelemon.midp1
This class represents Command MIDP1 Java class in the Bluelemon environment.
addCommand(ActionCommand) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Adds a command to the Form.
addCommand(ActionCommand) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Adds a command to the List.
addCommand(ActionCommand) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Adds a command to the TextBox.
addInstruction(BluelemonCode) - Method in class managers.ProcessingManager
Adds a Bluelemon instruction to the end of the processing stack.
ALARM - Static variable in class com.emarson.lemonade.bluelemon.midp1.AlertType
An ALARM AlertType is a hint to alert the user to an event for which the user has previously requested to be notified.
Alert - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 Alert Java class to the Bluelemon environment.
Alert() - Constructor for class com.emarson.lemonade.bluelemon.midp1.Alert
Constructs a new, empty Alert object.
AlertType - Class in com.emarson.lemonade.bluelemon.midp1
Alert type constants used in Alert.intialize(types.String, types.String, Number, Number)
ANY - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The user is allowed to enter any text.
ANYORPASSWORD - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The result of ANY | PASSWORD
appendAfter(Dataset, Dataset, Number, Dataset) - Method in class managers.UtilsManager
Returns the new dataset, appending the given dataset after the given row number in the source dataset.
appendFirst(Dataset, Dataset) - Method in class managers.UtilsManager
Returns the new dataset appended to the beginning of the source dataset.
appendItem(TextField) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Adds a TextField into the Form.
appendItem(Gauge) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Adds a Gauge into the Form.
appendLast(Dataset, Dataset) - Method in class managers.UtilsManager
Returns the new dataset appended to the end of the source dataset.
appendString(String) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Adds an item consisting of one String to the form.

B

BACK - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
A navigation command that returns the user to the logically previous screen.
BluelemonCode - Class in types
byte[] containing a Bluelemon instruction
BluelemonCode() - Constructor for class types.BluelemonCode
 
Boolean - Class in types
boolean
Boolean() - Constructor for class types.Boolean
 
AND(Boolean, Boolean) - Method in class managers.UtilsManager
Returns arg1 && arg2.
AND=(Boolean, Boolean) - Method in class managers.UtilsManager
arg1 = arg1 && arg2.
OR(Boolean, Boolean) - Method in class managers.UtilsManager
Returns arg1 || arg2.
OR=(Boolean, Boolean) - Method in class managers.UtilsManager
arg1 = arg1 || arg2.
NOT(Boolean) - Method in class managers.UtilsManager
Returns arg1 negated.
NOT=(Boolean) - Method in class managers.UtilsManager
arg1 = negated arg1.
Byte - Class in types
byte
Byte() - Constructor for class types.Byte
 
ByteArray - Class in types
byte[]
ByteArray() - Constructor for class types.ByteArray
 

C

CANCEL - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
A command that is a standard negative answer to a dialog implemented by current screen.
cancel() - Method in class com.emarson.lemonade.bluelemon.midp1.Timer
Terminates this timer, discarding any currently scheduled tasks.
ChoiceFactory - Class in com.emarson.lemonade.bluelemon.midp1
This class is the factory for creating instances of the List object.
ChoiceFactory() - Constructor for class com.emarson.lemonade.bluelemon.midp1.ChoiceFactory
Constructs a new, empty ChoiceFactory object.
com.emarson.lemonade.bluelemon.midp1 - package com.emarson.lemonade.bluelemon.midp1
Classes reflecting the functionality of the selected MIDP1 classes.
concat(String...) - Method in class managers.UtilsManager
Concatenates any number of String objects.
CONFIRMATION - Static variable in class com.emarson.lemonade.bluelemon.midp1.AlertType
A CONFIRMATION AlertType is a hint to confirm user actions.
CONSTRAINT_MASK - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The mask value for determining the constraint mode.
createGauge(String, Boolean, int, int) - Method in class com.emarson.lemonade.bluelemon.midp1.GaugeFactory
Constructs a new Gauge object.
createImage(ByteArray) - Method in class managers.UtilsManager
Creates the Image object based on the specified content.
createList(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.ChoiceFactory
Constructs a new List object.

D

Dataset - Class in types
dataset
Dataset() - Constructor for class types.Dataset
 
Dataset1<A> - Class in types
dataset with one column
Dataset1() - Constructor for class types.Dataset1
 
Dataset2<A,B> - Class in types
dataset with two columns
Dataset2() - Constructor for class types.Dataset2
 
delete(Number, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Deletes characters from the TextBox.
delete(Number, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Deletes characters from the TextField.
deleteItem(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Deletes the Item referenced by itemNum.

E

EMAILADDR - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The user is allowed to enter an e-mail address.
emptyDataset(Dataset) - Method in class managers.UtilsManager
Returns the empty dataset.
equalObjects(Object, Object) - Method in class managers.UtilsManager
Returns arg1.equals(arg2).
equalValues(ByteArray, ByteArray) - Method in class managers.UtilsManager
Tests if the content of two byte arrays is equal.
ERROR - Static variable in class com.emarson.lemonade.bluelemon.midp1.AlertType
An ERROR AlertType is a hint to alert the user to an erroneous operation.
EXCLUSIVE - Static variable in class com.emarson.lemonade.bluelemon.midp1.List
EXCLUSIVE is a list having exactly one element selected at time.
EXIT - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
A command used for exiting from the application.

F

FOREVER - Static variable in class com.emarson.lemonade.bluelemon.midp1.Alert
FOREVER indicates that an Alert is kept visible until the user dismisses it.
Form - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 Form Java class to the Bluelemon environment.
Form() - Constructor for class com.emarson.lemonade.bluelemon.midp1.Form
Constructs a new, empty Form object.

G

Gauge - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 Gauge Java class to the Bluelemon environment.
GaugeFactory - Class in com.emarson.lemonade.bluelemon.midp1
This class is the factory for creating instances of the Gauge object.
GaugeFactory() - Constructor for class com.emarson.lemonade.bluelemon.midp1.GaugeFactory
Constructs a new GaugeFactory object.
GeneralManager - Class in managers
Delivers general MIDlet functionality.
getActionCommand(String, Number, Number, BluelemonCode) - Method in class managers.UtilsManager
Returns the action command.
getCaretPosition() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Gets the current input position.
getCaretPosition() - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Gets the current input position.
getColumn(Dataset, Dataset, Number) - Method in class managers.UtilsManager
Copies the column with the specified number from the dataset, returning new one-column dataset.
getConstraints() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Get the current input constraints of the TextBox.
getConstraints() - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Get the current input constraints of the TextField.
getCurrent() - Method in class managers.GeneralManager
Returns the MIDlet's current Screen object.
getField(Dataset, Dataset, Number, Number) - Method in class managers.UtilsManager
Returns the field from the dataset identified by the given row and column numbers.
getHeight() - Method in class managers.GeneralManager
Gets height of the displayable area in pixels.
getItem() - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Gets the item at given position.
getLabel() - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Gets the label of this Gauge object.
getLayout() - Method in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Gets the layout directives used for placing the image.
getMaxSize() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Returns the maximum size (number of characters) that can be stored in this TextBox.
getMaxSize() - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Returns the maximum size (number of characters) that can be stored in this TextField.
getMaxValue() - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Gets the maximum value of this Gauge object.
getObject(Node) - Method in class managers.ResourcesManager
Gets an object from the node specified as the argument.
getPlatformName() - Method in class managers.GeneralManager
Returns System.getProperty("microedition.platform").
getRandomNumber() - Method in class managers.GeneralManager
Generates the pseudorandom number.
getRow(Dataset, Dataset, Number) - Method in class managers.UtilsManager
Copies the row with the specified number from the dataset, returning new one-row dataset.
getRowsNumber(Dataset, Dataset) - Method in class managers.UtilsManager
Returns the number of rows in the dataset.
getSelectedIndex() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Returns the index number of the element in the List that is selected.
getString(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Gets the String part of the element referenced by elementNum.
getString() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Gets the contents of the TextBox as a string value.
getString() - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Gets the contents of the TextField as a string value.
getTicker() - Method in class com.emarson.lemonade.bluelemon.midp1.Alert
Gets the ticker used by this Alert.
getTicker() - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Gets the ticker used by this Form.
getTicker() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Gets the ticker used by this List.
getTicker() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Gets the ticker used by this TextBox.
getTimestamp() - Method in class managers.GeneralManager
Returns the current time in milliseconds.
getTitle() - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Gets the title of the Form.
getTitle() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Gets the title of the List.
getTitle() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Gets the title of the TextBox.
getValue() - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Gets the current value of this Gauge object.
getValue(Node) - Method in class managers.ResourcesManager
Gets a series of bytes from the node specified as the argument.
getWidth() - Method in class managers.GeneralManager
Gets width of the displayable area in pixels.
greaterThan(Number, Number) - Method in class managers.UtilsManager
Returns arg1 > arg2.

H

HELP - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
This command specifies a request for on-line help.

I

Image - Class in com.emarson.lemonade.bluelemon.midp1
This class represents Image MIDP1 Java class in the Bluelemon environment.
ImageItem - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 ImageItem Java class to the Bluelemon environment.
ImageItem() - Constructor for class com.emarson.lemonade.bluelemon.midp1.ImageItem
Constructs a new, empty ImageItem object.
IMPLICIT - Static variable in class com.emarson.lemonade.bluelemon.midp1.List
IMPLICIT is a choice in which the currently focused item is selected when a List.SELECT_COMMAND is initiated.
increment() - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Increments the current value of this Gauge object.
INFO - Static variable in class com.emarson.lemonade.bluelemon.midp1.AlertType
An INFO AlertType typically provides non-threatening information to the user.
initialize(String) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Initializes a Form object with the given title
initialize(String, Image) - Method in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Initializes an ImageItem object with the given label and image.
initialize(String) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Initializes a List object with the given title
initialize(String, Dataset2<String, BluelemonCode>) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Initializes a List object with the given title and content.
initialize(String, Dataset1<String>, BluelemonCode) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Initializes a List object with the given title, content and the Bluelemon code to process on List.SELECT_COMMAND event.
initialize(String, String, Number, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Initializes a TextBox object with the given title.
initialize(String, String, Number, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Initializes a TextField object with the given title
insert(String, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Inserts a String into the contents of the TextBox.
insert(String, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Inserts a String into the contents of the TextField.
instanceOf(Object, String) - Method in class managers.UtilsManager
Returns object.getClass().getName().equals(className)
Integer - Class in types
int
Integer() - Constructor for class types.Integer
 
intialize(String, String, Number, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.Alert
Initializes an Alert object with the given title, content string, alert type and timeout.
intialize(String) - Method in class com.emarson.lemonade.bluelemon.midp1.Ticker
Initializes a Ticker object with the the string to be displayed by this ticker.
isColor() - Method in class managers.GeneralManager
Gets information about color support of the device.
isConnectionInitiated() - Method in class managers.NetworkManager
Answers if the connection with the server is initialized.
isInteractive() - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Tells whether the user is allowed to change the value of the Gauge.
isMemoryAvailable(Number) - Method in class managers.GeneralManager
Checks wheather the specified amount of memory is available.
isNull(Object) - Method in class managers.UtilsManager
Returns arg1 == null.
isShown() - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Checks if the Form is actually visible on the display.
isShown() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Checks if the List is actually visible on the display.
isShown() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Checks if the TextBox is actually visible on the display.
isStorageSpaceAvailable(Number) - Method in class managers.GeneralManager
Checks wheather the specified amount of storage space is available.
ITEM - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
With this command type the application can hint to the implementation that the command is specific to a particular item on the screen.

L

LAYOUT_CENTER - Static variable in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Image should be horizontally centered.
LAYOUT_DEFAULT - Static variable in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Use the default formatting of the "container" of the image.
LAYOUT_LEFT - Static variable in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Image should be close to left-edge of the drawing area.
LAYOUT_NEWLINE_AFTER - Static variable in class com.emarson.lemonade.bluelemon.midp1.ImageItem
A new line should be started after the image is drawn.
LAYOUT_NEWLINE_BEFORE - Static variable in class com.emarson.lemonade.bluelemon.midp1.ImageItem
A new line should be started before the image is drawn.
LAYOUT_RIGHT - Static variable in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Image should be close to right-edge of the drawing area.
length(ByteArray) - Method in class managers.UtilsManager
Returns the length of the given byte array
lesserThan(Number, Number) - Method in class managers.UtilsManager
Returns arg1 < arg2.
List - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers some of the functionality of the MIDP1 List Java class to the Bluelemon environment.
Long - Class in types
long
Long() - Constructor for class types.Long
 

M

managers - package managers
Managers are the key components of the Bluelemon Runtime Environment.
+(Number, Number) - Method in class managers.UtilsManager
Returns arg1 + arg2.
+=(Number, Number) - Method in class managers.UtilsManager
arg1 = arg1 + arg2.
++(Number) - Method in class managers.UtilsManager
Increments arg1.
--(Number) - Method in class managers.UtilsManager
Decrements arg1.
==(Number, Number) - Method in class managers.UtilsManager
Returns arg1 == arg2.
-(Number, Number) - Method in class managers.UtilsManager
Returns arg1 - arg2.
-=(Number, Number) - Method in class managers.UtilsManager
arg1 = arg1 - arg2.
*(Number, Number) - Method in class managers.UtilsManager
Returns arg1 * arg2.
*=(Number, Number) - Method in class managers.UtilsManager
arg1 = arg1 * arg2.
/(Number, Number) - Method in class managers.UtilsManager
Returns arg1 / arg2.
/=(Number, Number) - Method in class managers.UtilsManager
arg1 = arg1 / arg2.
%(Number, Number) - Method in class managers.UtilsManager
Returns arg1 % arg2.
%=(Number, Number) - Method in class managers.UtilsManager
arg1 = arg1 % arg2.
MULTIPLE - Static variable in class com.emarson.lemonade.bluelemon.midp1.List
MULTIPLE is a list that can have arbitrary number of elements selected at a time.

N

NetworkManager - Class in managers
Responsible for networking.
Node - Class in types
node
Node() - Constructor for class types.Node
 
Number - Class in types
any of: byte, short, int or long
Number() - Constructor for class types.Number
 
numberToString(Number) - Method in class managers.UtilsManager
Returns java.lang.String.valueOf(arg1).
numColors() - Method in class managers.GeneralManager
Gets the number of colors (if GeneralManager.isColor() is true) or graylevels (if GeneralManager.isColor() is false) that can be represented on the device.
NUMERIC - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The user is allowed to enter only an integer value.
NUMERICORPASSWORD - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The result of NUMERIC | PASSWORD

O

OK - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
A command that is a standard positive answer to a dialog implemented by current screen.

P

PASSWORD - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The text entered must be masked so that the characters typed are not visible.
PHONENUMBER - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The user is allowed to enter a phone number.
ProcessingManager - Class in managers
Processes the Bluelemon instructions.
processInstruction(BluelemonCode) - Method in class managers.ProcessingManager
Adds a Bluelemon instruction to the beginning of the processing stack and notifies the processing thread.
processSelectedFlags() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Calls List.processSelectedIndex() for every selected element in the List.
processSelectedIndex() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Processes the Bluelemon code.

Q

quit() - Method in class managers.GeneralManager
Quits the MIDlet.

R

remoteCall(Node, ByteArray...) - Method in class managers.NetworkManager
Invokes a remote call to the server.
remove(Node) - Method in class managers.ResourcesManager
Removes the content of the node specified as the argument.
removeCommand() - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Removes a command from the Form.
removeCommand() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Removes a command from the List.
removeCommand() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Removes a command from the TextBox.
removePackage(Node) - Method in class managers.ResourcesManager
Removes the whole package from the MIDlet environment.
removeRow(Dataset, Dataset, Number) - Method in class managers.UtilsManager
Returns the new dataset being a copy of the source dataset, but having the row identified by the given row number removed.
ResourcesManager - Class in managers
Responsible for persistance.
restart() - Method in class managers.GeneralManager
Restarts the MIDlet.

S

schedule(BluelemonCode, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.Timer
Creates the instance of TimerTask to process the specified Bluelemon code and schedules it for execution after the specified delay.
schedule(BluelemonCode, Number, Number) - Method in class com.emarson.lemonade.bluelemon.midp1.Timer
Creates the instance of TimerTask to process the specified Bluelemon code and schedules it for repeated fixed-delay execution, beginning after the specified delay.
SCREEN - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
Specifies an application-defined command that pertains to the current screen.
Screen - Interface in com.emarson.lemonade.bluelemon.midp1
Marker interface - marks all the objects related to Screen.
setConstraints(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Sets the input constraints of the TextBox.
setConstraints(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Sets the input constraints of the TextField.
setCurrent(Screen) - Method in class managers.GeneralManager
Requests that a different Screen object be made visible on the display.
setCurrent(Alert, Screen) - Method in class managers.GeneralManager
Requests that this Alert be made current, and that Screen be made current after the Alert is dismissed.
setField(Dataset, Dataset, Number, Number, ByteArray) - Method in class managers.UtilsManager
Returns the new dataset being a copy of the source dataset, but having the newValue put in the field identified by the given row and column numbers.
setGaugeToSynchronizeWith(Gauge) - Method in class managers.NetworkManager
The Gauge object set with this method will be used by the NetworkManager to report the progress of downloading data from the server.
setLabel(String) - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Sets the label of the Gauge.
setLayout(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.ImageItem
Sets the layout directives.
setMaxSize(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Sets the maximum size (number of characters) that can be contained in this TextBox.
setMaxSize(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Sets the maximum size (number of characters) that can be contained in this TextField.
setMaxValue(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Sets the maximum value of this Gauge object.
setObject(Node, Object) - Method in class managers.ResourcesManager
Binds a given object to the node specified as the argument.
setRow(Dataset, Dataset, Number, Dataset) - Method in class managers.UtilsManager
Returns the new dataset being a copy of the source dataset, but having the row identified by the given row number updated with the given new row.
setSelectedIndex(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Sets the state of the the element with the given index to selected.
setString(String) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Sets the contents of the TextBox as a string value, replacing the previous contents.
setString(String) - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Sets the contents of the TextField as a string value, replacing the previous contents.
setTicker(Ticker) - Method in class com.emarson.lemonade.bluelemon.midp1.Alert
Set a ticker for use with this Alert, replacing any previous ticker.
setTicker(Ticker) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Set a ticker for use with this Form, replacing any previous ticker.
setTicker(Ticker) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Set a ticker for use with this List, replacing any previous ticker.
setTicker(Ticker) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Set a ticker for use with this TextBox, replacing any previous ticker.
setTitle(String) - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Sets the title of the Form.
setTitle(String) - Method in class com.emarson.lemonade.bluelemon.midp1.List
Sets the title of the List.
setTitle(String) - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Sets the title of the TextBox.
setValue(Number) - Method in class com.emarson.lemonade.bluelemon.midp1.Gauge
Sets the value of this Gauge object.
setValue(Node, ByteArray) - Method in class managers.ResourcesManager
Binds a given series of bytes to the node specified as the argument.
Short - Class in types
short
Short() - Constructor for class types.Short
 
size() - Method in class com.emarson.lemonade.bluelemon.midp1.Form
Gets the number of items in the Form.
size() - Method in class com.emarson.lemonade.bluelemon.midp1.List
Gets the number of elements present.
size() - Method in class com.emarson.lemonade.bluelemon.midp1.TextBox
Gets the number of characters that are currently stored in this TextBox.
size() - Method in class com.emarson.lemonade.bluelemon.midp1.TextField
Gets the number of characters that are currently stored in this TextField.
STOP - Static variable in class com.emarson.lemonade.bluelemon.midp1.ActionCommand
A command that will stop some currently running process, operation, etc.
stopDownloading() - Method in class managers.NetworkManager
Forces the network connection to close.
String - Class in types
String
String() - Constructor for class types.String
 
stringToNumber(String, Number) - Method in class managers.UtilsManager
Returns the numeric representation of the String value.

T

TextBox - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 TextBox Java class to the Bluelemon environment.
TextBox() - Constructor for class com.emarson.lemonade.bluelemon.midp1.TextBox
Constructs a new, empty TextBox object.
TextField - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 TextField Java class to the Bluelemon environment.
TextField() - Constructor for class com.emarson.lemonade.bluelemon.midp1.TextField
Constructs a new, empty TextField object.
this(Object) - Method in class managers.UtilsManager
Returns arg1.
Ticker - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 Ticker Java class to the Bluelemon environment.
Ticker() - Constructor for class com.emarson.lemonade.bluelemon.midp1.Ticker
Constructs a new, empty Ticker object.
Timer - Class in com.emarson.lemonade.bluelemon.midp1
This class delivers the functionality of the MIDP1 Timer Java class to the Bluelemon environment.
Timer() - Constructor for class com.emarson.lemonade.bluelemon.midp1.Timer
Constructs a new, empty Timer object.
types - package types
Reflects the Bluelemon types.

U

URL - Static variable in class com.emarson.lemonade.bluelemon.midp1.TextField
The user is allowed to enter a URL.
UtilsManager - Class in managers
Delivers different utility operations.

W

WARNING - Static variable in class com.emarson.lemonade.bluelemon.midp1.AlertType
A WARNING AlertType is a hint to warn the user of a potentially dangerous operation.

A B C D E F G H I L M N O P Q R S T U W

Copyright © 2007 E-MARSON. All Rights Reserved.