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

Version Path
rhodes-7.6.0 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-7.5.1 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-7.4.1 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-7.1.17 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-6.2.0 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-6.0.11 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.18 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.17 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.15 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.0.22 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.2 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.0.7 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.0.3 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java
rhodes-5.5.0 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/CaptureRecord.java