Browse Source

Add accessor for checksum

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271864 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
0d3c706825
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      proposal/myrmidon/src/java/org/apache/aut/tar/TarEntry.java

+ 10
- 0
proposal/myrmidon/src/java/org/apache/aut/tar/TarEntry.java View File

@@ -456,6 +456,16 @@ public class TarEntry
return m_size;
}

/**
* Get this entry's checksum.
*
* @return This entry's checksum.
*/
public int getCheckSum()
{
return m_checkSum;
}

/**
* Get this entry's user id.
*


Loading…
Cancel
Save