ProgressEvent

A <code>ProgressEvent</code> is sent by a {@link Browser} to {@link ProgressListener}'s when a progress is made during the loading of the current URL or when the loading of the current URL has been completed.

@since 3.0

class ProgressEvent : TypedEvent {
long serialVersionUID;
}

Members

Functions

toString
String toString()

Returns a string containing a concise, human-readable description of the receiver.

Variables

current
int current;

current value

total
int total;

total value

Inherited Members

From TypedEvent

display
Display display;

the display where the event occurred

widget
Widget widget;

the widget that issued the event

time
int time;

the time that the event occurred.

data
Object data;

a field for application use

getName
String getName()

Returns the name of the event. This is the name of the class without the module name.

toString
String toString()

Returns a string containing a concise, human-readable description of the receiver.

Meta