Sha256: e6c6c155b45b60ec5fad5db955406ded081ee183b8fe19e12cb2aeec0508787b

Contents?: true

Size: 589 Bytes

Versions: 14

Compression:

Stored size: 589 Bytes

Contents

package com.rho.keycapture;

import com.rho.keycapture.IKeyCapture;
import com.rho.keycapture.IKeyCaptureFactory;
import com.rho.keycapture.IKeyCaptureSingleton;

public class KeyCaptureFactory implements IKeyCaptureFactory
{
	private KeyCaptureSingleton singleton;
	
	public KeyCaptureFactory()
	{
		super();
		KeyCaptureRhoListener.registerListener(this);
	}

	@Override
	public IKeyCaptureSingleton getApiSingleton()
	{
		if(singleton == null) singleton = new KeyCaptureSingleton();
		return singleton;
	}

	@Override
	public IKeyCapture getApiObject(String id)
	{
		return null;
	}

}

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/KeyCaptureFactory.java
rhodes-7.5.1 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-7.4.1 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-7.1.17 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-6.2.0 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-6.0.11 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.18 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.17 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.15 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.0.22 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.2 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.0.7 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.0.3 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java
rhodes-5.5.0 lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureFactory.java