Class FSRepresentationCacheRecord
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.io.fs.repcache.FSRepresentationCacheRecord
-
public class FSRepresentationCacheRecord extends java.lang.Object- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Field Summary
Fields Modifier and Type Field Description static intEXPANDED_SIZE_FIELDstatic intHASH_FIELDstatic intOFFSET_FIELDstatic intREVISION_FIELDstatic intSIZE_FIELD
-
Constructor Summary
Constructors Constructor Description FSRepresentationCacheRecord(java.lang.String hash, long revision, long offset, long size, long expandedSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetExpandedSize()java.lang.StringgetHash()longgetOffset()longgetRevision()longgetSize()voidsetExpandedSize(long expandedSize)voidsetHash(java.lang.String hash)voidsetOffset(long offset)voidsetRevision(long revision)voidsetSize(long size)java.lang.StringtoString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getHash
public java.lang.String getHash()
- Returns:
- the hash
-
setHash
public void setHash(java.lang.String hash)
- Parameters:
hash- the hash to set
-
getRevision
public long getRevision()
- Returns:
- the revision
-
setRevision
public void setRevision(long revision)
- Parameters:
revision- the revision to set
-
getOffset
public long getOffset()
- Returns:
- the offset
-
setOffset
public void setOffset(long offset)
- Parameters:
offset- the offset to set
-
getSize
public long getSize()
- Returns:
- the size
-
setSize
public void setSize(long size)
- Parameters:
size- the size to set
-
getExpandedSize
public long getExpandedSize()
- Returns:
- the expanded_size
-
setExpandedSize
public void setExpandedSize(long expandedSize)
- Parameters:
expanded_size- the expanded_size to set
-
-