Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk 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 io.kickflip.sdk.event; /* w w w.j a v a 2 s . c om*/ import android.hardware.Camera.Parameters; /** * Used to pass the parameters of the opened camera to subscribers. */ public class CameraOpenedEvent { public Parameters params; public CameraOpenedEvent(Parameters params) { this.params = params; } }