Back to project page FxCameraApp.
The source code is released under:
MIT License
If you think the Android project FxCameraApp 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.af.experiments.FxCameraApp.camera; /*from ww w . j av a 2 s . c o m*/ import android.content.Context; public final class CameraHelperFactory { public static CameraHelper newCameraHelper(final Context context) { return new CameraHelperICS(context); } private CameraHelperFactory() {} }