Back to project page MobilHackathon2014.
The source code is released under:
GNU General Public License
If you think the Android project MobilHackathon2014 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.google.android.glass.eye; /* ww w .j a v a2 s . c o m*/ import android.content.Context; public class EyeGestureManager { public static final String ACTION_EYE_GESTURE = "com.google.glass.action.EYE_GESTURE"; public static final String EXTRA_EYE_GESTURE = "gesture"; public static final int INFINITE_TIMEOUT = -1; public static final String SERVICE_NAME = "eye_gesture"; public static abstract interface Listener { public abstract void onDetected(EyeGesture paramEyeGesture); public abstract void onEnableStateChange(EyeGesture paramEyeGesture, boolean paramBoolean); } public static EyeGestureManager from(Context paramContext) { return null; } public void activateGazeLogging(boolean paramBoolean) { } public boolean applyAndSaveCalibration(EyeGesture paramEyeGesture) { return false; } public boolean clearCalibration(EyeGesture paramEyeGesture) { return false; } public boolean enableDetectorPersistently(EyeGesture paramEyeGesture, boolean paramBoolean) { return false; } public boolean enableDetectorPersistently(EyeGesture paramEyeGesture, boolean paramBoolean1, boolean paramBoolean2) { return false; } public void enableGazeService(boolean paramBoolean) { } public boolean endCalibrationInterval(EyeGesture paramEyeGesture) { return false; } public void forceGlasshubResetHack() { } public boolean isCalibrationComplete(EyeGesture paramEyeGesture) { return false; } public boolean isDetectorPersistentlyEnabled(EyeGesture paramEyeGesture) { return false; } public boolean isDetectorRunning(EyeGesture paramEyeGesture) { return false; } public boolean isGazeLogging() { return false; } public boolean isRegistered(EyeGesture paramEyeGesture, Listener paramListener) { return false; } public boolean isSupported(EyeGesture paramEyeGesture) { return false; } public boolean loadCalibration(EyeGesture paramEyeGesture) { return false; } public boolean register(EyeGesture paramEyeGesture, Listener paramListener) { return false; } public boolean registerOneShot(EyeGesture paramEyeGesture, Listener paramListener) { return false; } public boolean startCalibrationInterval(EyeGesture paramEyeGesture) { return false; } public boolean startDetector(EyeGesture paramEyeGesture, boolean paramBoolean) { return false; } public boolean startDetector(EyeGesture paramEyeGesture, boolean paramBoolean, int paramInt) { return false; } public boolean stopDetector(EyeGesture paramEyeGesture) { return false; } public boolean unregister(EyeGesture paramEyeGesture, Listener paramListener) { return false; } }