java.lang.Object |
↳ |
com.pdftron.collab.ui.base.component.BaseUIEvent<T, D> |
Known Direct Subclasses
AnnotationListEvent |
Represents a user event from interaction with the annotation list UI. |
HeaderEvent |
Represents a user event from interaction the header in the annotation reply UI. |
InputEvent |
Represents a user event from interaction with the text input field in the annotation reply UI. |
MessageEvent |
Represents a user event from interaction with a message in the annotation reply UI. |
|
Class Overview
Describes user UI interaction (i.e. clicks, long-presses, radio button selected) by defining
a type (usually an enumerator) and the data associated with the event (if no data is needed,
you can specify Void.
Summary
Public Constructors |
|
BaseUIEvent(T eventType, D data)
Base class for defining user UI interfaction within a component
|
[Expand]
Inherited Methods |
From class
java.lang.Object
boolean
|
equals(Object arg0)
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
BaseUIEvent
(T eventType, D data)
Base class for defining user UI interfaction within a component
Parameters
eventType |
type of event this class represents, typically an enumeration. |
data |
the data that can be
|
Public Methods