Autopsy  4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
VideoFrame.java
Go to the documentation of this file.
1 package org.sleuthkit.autopsy.corecomponents;
2 
3 import java.awt.Image;
4 
8 public class VideoFrame {
9 
10  private Image frame;
11  private long timeMillis;
12 
13  public VideoFrame(Image frame, long timeMillis) {
14  this.frame = frame;
15  this.timeMillis = timeMillis;
16  }
17 
18  public Image getFrame() {
19  return frame;
20  }
21 
22  public long getTimeMillis() {
23  return timeMillis;
24  }
25 }
VideoFrame(Image frame, long timeMillis)
Definition: VideoFrame.java:13

Copyright © 2012-2016 Basis Technology. Generated on: Mon Apr 24 2017
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.