KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > fileInfo


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.util;
11
12 /**
13  * Object for storing file information.
14  * Stores content and lastmodified date.
15  * Does not store filename, so association should eb done manually.
16  * Used by the {@link org.mmbase.module.scancache} module.
17  *
18  * @rename FileInfo
19  * @application SCAN
20  * @author Daniel Ockeloen
21  * @author Pierre van Rooden (javadocs)
22  * @version $Id: fileInfo.java,v 1.9 2004/09/30 08:52:17 pierre Exp $
23  */

24 public class fileInfo {
25     /**
26      * Content of the file
27      */

28     public String JavaDoc value;
29
30     /**
31      * Last Modified Date of the file
32      */

33     public int time;
34 }
35
36
Popular Tags