1 /*** 2 * 3 */ 4 package com.fernsroth.squashfs; 5 6 import java.util.Date; 7 8 /*** 9 * 10 * @author Joseph M. Ferner (Near Infinity Corporation) 11 */ 12 public interface SquashFSSystem { 13 /*** 14 * gets the current date. 15 * @return the current date. 16 */ 17 Date getCurrentDate(); 18 }