public class

BaseUIEvent

extends Object
java.lang.Object
   ↳ com.pdftron.collab.ui.base.component.BaseUIEvent<T, D>
Known Direct Subclasses

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
Public Methods
D getData()
T getEventType()
[Expand]
Inherited Methods
From class java.lang.Object

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

public D getData ()

public T getEventType ()