Sha256: 2cddfe1ba60100fa72410f3596e9d11a5e9da987b7f5f19f49b2a8053e45fe40
Contents?: true
Size: 591 Bytes
Versions: 14
Compression:
Stored size: 591 Bytes
Contents
package com.rho.keycapture; import com.rhomobile.rhodes.api.MethodResult; /** * A record of a keycapture request. Dispatch specifies if the captured key sound be absorbed or bubbled, * result is the callback object. * @author Ben Kennedy (NCVT73) */ public class CaptureRecord { private boolean dispatch; private MethodResult result; public CaptureRecord(boolean dispatch, MethodResult result) { super(); this.dispatch = dispatch; this.result = result; } public boolean isDispatch() { return dispatch; } public MethodResult getResult() { return result; } }
Version data entries
14 entries across 14 versions & 1 rubygems