コード例 #1
0
ファイル: DfsPackDescription.java プロジェクト: dgreensp/jgit
 /**
  * @param ext the file extension
  * @return whether the pack file extensions is known to exist.
  */
 public boolean hasFileExt(PackExt ext) {
   return (extensions & ext.getBit()) != 0;
 }
コード例 #2
0
ファイル: DfsPackDescription.java プロジェクト: dgreensp/jgit
 /**
  * Adds the pack file extension to the known list.
  *
  * @param ext the file extension
  */
 public void addFileExt(PackExt ext) {
   extensions |= ext.getBit();
 }