| java.lang.Object |
| ↳ |
com.pnfsoftware.jeb.core.actions.ActionData |
Known Direct Subclasses
|
Class Overview
Base action data class. This class is meant to be subclassed.
Summary
| Public Methods |
|
Object
|
getValue(String key)
Convenience method used to store any object.
|
|
void
|
setValue(String key, Object value)
Convenience method used to retrieve previously stored objects.
|
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
com.pnfsoftware.jeb.core.actions.IActionData
|
abstract
Object
|
getValue(String key)
Convenience method used to store any object.
|
|
abstract
void
|
setValue(String key, Object value)
Convenience method used to retrieve previously stored objects.
|
|
Public Constructors
Public Methods
public
Object
getValue
(String key)
Convenience method used to store any object. Objects may be stored by the client or the
plugin.
public
void
setValue
(String key, Object value)
Convenience method used to retrieve previously stored objects.
Parameters
| key |
object key |
| value |
object value
|