示例#1
0
 /**
  * Parses a line of a manifest file into a ManifestEntry.
  * @param pLine Line of file to be parsed.
  * @param pCurrentSequencePosition
  * @return A new ManifestEntry.
  * @throws ExParser If the line cannot be parsed into a ManifestEntry.
  * @throws ExManifest If the ManifestEntry is invalid in the context of this manifest.
  */
 protected ManifestEntry parseManifestEntryLine(string pLine, int pCurrentSequencePosition)
 {
     return(ManifestEntry.parseManifestFileLine(pLine, false));
 }