|
PulpCore | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use PropertyListener | |
|---|---|
| pulpcore.animation | Provides classes for properties, property animation, and timelines. |
| pulpcore.sprite | Provides the Sprite class, the ImageSprite class, and a few Sprite-based widgets. |
| pulpcore.util.crypt | Provides classes for encrypting data (useful for high score systems). |
| Uses of PropertyListener in pulpcore.animation |
|---|
| Methods in pulpcore.animation that return PropertyListener | |
|---|---|
PropertyListener[] |
Property.getListeners()
Returns a newly allocated array of all the listeners registered on this Property. |
| Methods in pulpcore.animation with parameters of type PropertyListener | |
|---|---|
void |
Property.addListener(PropertyListener listener)
Adds the specified listener to receive events from this Property. |
void |
Property.removeListener(PropertyListener listener)
Removes the specified listener so that it no longer receives events from this Property. |
| Constructors in pulpcore.animation with parameters of type PropertyListener | |
|---|---|
Bool(PropertyListener listener)
|
|
Bool(PropertyListener listener,
boolean value)
|
|
Color(PropertyListener listener)
|
|
Color(PropertyListener listener,
int argbColor)
|
|
Fixed(PropertyListener listener)
|
|
Fixed(PropertyListener listener,
double value)
|
|
Fixed(PropertyListener listener,
int value)
|
|
Int(PropertyListener listener)
Constructs a new Int object with the specified listener and the value of zero. |
|
Int(PropertyListener listener,
int value)
Constructs a new Int object with the specified listener and value. |
|
Property(PropertyListener listener,
int value)
Creates a property with the specified listener and initial value. |
|
| Uses of PropertyListener in pulpcore.sprite |
|---|
| Classes in pulpcore.sprite that implement PropertyListener | |
|---|---|
class |
Button
The Button is a Sprite that behaves like a common UI push button. |
class |
FilledSprite
Solid-colored rectangular shaped sprite. |
class |
Group
A container of Sprites. |
class |
ImageSprite
An image-based sprite. |
class |
Label
The Label is a Sprite that displays text. |
class |
ScrollPane
A ScrollPane is a Viewport with scroll bars that appear as needed. |
class |
Slider
A Slider is a widget that lets the user select a value by sliding a knob. |
class |
Sprite
The superclass of all sprites. |
class |
StretchableSprite
Stretchable sprites are sprites that, when scaled, draw the "static" sections normally and scale the "stretchable" sections. |
class |
TextField
The TextField is a Sprite that behaves like a common UI text input field. |
class |
Viewport
A Viewport is a Group whose contents can scroll, and the contents outside the
bounds of the Group are not visible. |
| Uses of PropertyListener in pulpcore.util.crypt |
|---|
| Classes in pulpcore.util.crypt that implement PropertyListener | |
|---|---|
class |
EncryptedInt
An EncryptedInt is an Int whose value is internally encrypted. |
| Constructors in pulpcore.util.crypt with parameters of type PropertyListener | |
|---|---|
EncryptedInt(PropertyListener listener)
Constructs a new Int object with the specified listener, the value of zero, and a cipher with a randomly generated encryption key. |
|
EncryptedInt(PropertyListener listener,
ARC4 cipher)
Constructs a new Int object with the specified listener, the value of zero, and the specified cipher. |
|
EncryptedInt(PropertyListener listener,
int value)
Constructs a new Int object with the specified value, the specified listener, and a cipher with a randomly generated encryption key. |
|
EncryptedInt(PropertyListener listener,
int value,
ARC4 cipher)
Constructs a new Int object with the specified value, the specified listener, and the specified cipher. |
|
|
PulpCore | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||