Package javax.microedition.amms.control.camera

Examples of javax.microedition.amms.control.camera.FocusControl


    }   
  }

  public void setMacro() {
    try {
      FocusControl focusControl = (FocusControl) this.cameraPlayer
          .getControl("javax.microedition.amms.control.camera.FocusControl");
      if (focusControl.isMacroSupported()) {
        focusControl.setMacro(true);
      } else {
        returnError("ScannerScreen.setMacro Error: Macro focus is not supported.");
      }
    } catch (MediaException me) {
      returnError("ScannerScreen.setMacro Error: " + me.getMessage());
View Full Code Here

TOP

Related Classes of javax.microedition.amms.control.camera.FocusControl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.