java.lang.Object
org.jpo.gui.CameraDownloadWizard
A wizard that leads the user through downloading the pictures from his digital camera.
It is based on the JWizz software contributed by Michael Rudolf.
http://javaprog.net/jwizz/
Before creating a CameraDownloadWizard, create a CameraDownloadWizardData object and set some parameters on it:
CameraDownloadWizardData dm = new CameraDownloadWizardData(); dm.setCamera( c ); dm.setAnchorFrame( Settings.anchorFrame ); new CameraDownloadWizard( dm );
- See Also:
-
Constructor Summary
ConstructorDescriptionCameraDownloadWizard
(CameraDownloadWizardData dataModel) Constructor for a new CameraDownloadWizard -
Method Summary
-
Constructor Details
-
CameraDownloadWizard
Constructor for a new CameraDownloadWizard- Parameters:
dataModel
- The data model for the wizard. Pre-fill with the camera before calling.
-