OSDN Git Service

initial
[gokigen/A01d.git] / app / src / main / java / net / osdn / gokigen / a01d / camera / olympus / wrapper / ICameraHardwareStatus.java
1 package net.osdn.gokigen.a01d.camera.olympus.wrapper;
2
3 import java.util.Map;
4
5 /**
6  *
7  *
8  */
9 public interface ICameraHardwareStatus
10 {
11     String getLensMountStatus();
12     String getMediaMountStatus();
13
14     float getMinimumFocalLength();
15     float getMaximumFocalLength();
16     float getActualFocalLength();
17
18     Map<String, Object> inquireHardwareInformation();
19 }