cc.glsn
Class DirUpdateInfoEntry

java.lang.Object
  extended by cc.glsn.DirUpdateInfoEntry
All Implemented Interfaces:
Serializable, Comparable

public class DirUpdateInfoEntry
extends Object
implements Serializable, Comparable

See Also:
Serialized Form

Field Summary
 long DetectTime
           
 boolean IsDir
           
 long LastMod
           
 long Length
           
 String RelPath
           
 long ScanPass
           
 
Constructor Summary
DirUpdateInfoEntry()
          Should only be called by bean constructor
DirUpdateInfoEntry(com.sleepycat.je.DatabaseEntry Data)
           
DirUpdateInfoEntry(String relPath, File F)
           
 
Method Summary
 Object clone()
           
 int compareTo(Object O)
          Higher is newer.
 com.sleepycat.je.DatabaseEntry getDatabaseEntry()
           
 long getDetectTime()
           
 boolean getIsDir()
           
 long getLastMod()
           
 long getLength()
           
 String getRelPath()
           
 long getScanPass()
           
 boolean isDeleted()
           
 void setDetectTime(long v)
           
 void setIsDir(boolean v)
           
 void setLastMod(long v)
           
 void setLength(long v)
           
 void setRelPath(String v)
           
 void setScanPass(long v)
           
 String toString()
           
 boolean update(File F)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RelPath

public String RelPath

Length

public long Length

LastMod

public long LastMod

ScanPass

public long ScanPass

IsDir

public boolean IsDir

DetectTime

public long DetectTime
Constructor Detail

DirUpdateInfoEntry

public DirUpdateInfoEntry()
Should only be called by bean constructor


DirUpdateInfoEntry

public DirUpdateInfoEntry(String relPath,
                          File F)

DirUpdateInfoEntry

public DirUpdateInfoEntry(com.sleepycat.je.DatabaseEntry Data)
Method Detail

getDatabaseEntry

public com.sleepycat.je.DatabaseEntry getDatabaseEntry()

update

public boolean update(File F)

clone

public Object clone()
Overrides:
clone in class Object

isDeleted

public boolean isDeleted()

getRelPath

public String getRelPath()

getLength

public long getLength()

getLastMod

public long getLastMod()

getScanPass

public long getScanPass()

getIsDir

public boolean getIsDir()

getDetectTime

public long getDetectTime()

setRelPath

public void setRelPath(String v)

setLength

public void setLength(long v)

setLastMod

public void setLastMod(long v)

setScanPass

public void setScanPass(long v)

setIsDir

public void setIsDir(boolean v)

setDetectTime

public void setDetectTime(long v)

toString

public String toString()
Overrides:
toString in class Object

compareTo

public int compareTo(Object O)
Higher is newer.

Specified by:
compareTo in interface Comparable