OSDN Git Service

Fuji対応。今度は表示側。
[gokigen/Gr2Control.git] / app / src / main / java / net / osdn / gokigen / gr2control / camera / playback / ICameraContent.java
1 package net.osdn.gokigen.gr2control.camera.playback;
2
3         import java.util.Date;
4
5 public interface ICameraContent
6 {
7     String getCameraId();
8     String getCardId();
9     String getContentPath();
10     String getContentName();
11     String getOriginalName();
12     boolean isRaw();
13     boolean isMovie();
14     boolean isDateValid();
15     boolean isContentNameValid();
16     Date getCapturedDate();
17     void setCapturedDate(Date date);
18 }