Examples of CameraItem


Examples of org.openpnp.gui.support.CameraItem

   
    JButton btnBrowse = new JButton(browseAction);
    panel_1.add(btnBrowse, "8, 14, left, default");
   
    for (Camera camera : configuration.getMachine().getCameras()) {
      cmbCameras.addItem(new CameraItem(camera));
    }
  }
View Full Code Here

Examples of org.openpnp.gui.support.CameraItem

    createUi();
  }

  public void addCamera(Camera camera) {
    cameras.add(camera);
    camerasCombo.addItem(new CameraItem(camera));
    if (cameras.size() == 1) {
      // First camera being added, so select it
      camerasCombo.setSelectedIndex(1);
    }
    else if (cameras.size() == 2) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.