Uses of Class
org.eclipse.jgit.transport.PackedObjectInfo

Packages that use PackedObjectInfo
org.eclipse.jgit.storage.dfs Distributed file system based repository storage. 
org.eclipse.jgit.storage.file File based repository storage. 
org.eclipse.jgit.storage.pack Reading/writing Git pack files. 
org.eclipse.jgit.transport Transport (fetch/push) for different protocols. 
 

Uses of PackedObjectInfo in org.eclipse.jgit.storage.dfs
 

Methods in org.eclipse.jgit.storage.dfs with parameters of type PackedObjectInfo
protected  boolean DfsPackParser.onAppendBase(int typeCode, byte[] data, PackedObjectInfo info)
           
protected  void DfsPackParser.onEndWholeObject(PackedObjectInfo info)
           
protected  void DfsPackParser.onInflatedObjectData(PackedObjectInfo obj, int typeCode, byte[] data)
           
protected  PackParser.ObjectTypeAndSize DfsPackParser.seekDatabase(PackedObjectInfo obj, PackParser.ObjectTypeAndSize info)
           
 

Uses of PackedObjectInfo in org.eclipse.jgit.storage.file
 

Fields in org.eclipse.jgit.storage.file with type parameters of type PackedObjectInfo
protected  List<? extends PackedObjectInfo> PackIndexWriter.entries
          The entries this writer must pack.
 

Methods in org.eclipse.jgit.storage.file with parameters of type PackedObjectInfo
protected  boolean ObjectDirectoryPackParser.onAppendBase(int typeCode, byte[] data, PackedObjectInfo info)
           
protected  void ObjectDirectoryPackParser.onEndWholeObject(PackedObjectInfo info)
           
protected  void ObjectDirectoryPackParser.onInflatedObjectData(PackedObjectInfo obj, int typeCode, byte[] data)
           
protected  PackParser.ObjectTypeAndSize ObjectDirectoryPackParser.seekDatabase(PackedObjectInfo obj, PackParser.ObjectTypeAndSize info)
           
 

Method parameters in org.eclipse.jgit.storage.file with type arguments of type PackedObjectInfo
static PackIndexWriter PackIndexWriter.createOldestPossible(OutputStream dst, List<? extends PackedObjectInfo> objs)
          Create a new writer for the oldest (most widely understood) format.
 void PackIndexWriter.write(List<? extends PackedObjectInfo> toStore, byte[] packDataChecksum)
          Write all object entries to the index stream.
 

Uses of PackedObjectInfo in org.eclipse.jgit.storage.pack
 

Subclasses of PackedObjectInfo in org.eclipse.jgit.storage.pack
 class ObjectToPack
          Per-object state used by PackWriter.
 

Uses of PackedObjectInfo in org.eclipse.jgit.transport
 

Methods in org.eclipse.jgit.transport that return PackedObjectInfo
 PackedObjectInfo PackParser.getObject(int nth)
          Get the information about the requested object.
protected  PackedObjectInfo PackParser.newInfo(AnyObjectId id, PackParser.UnresolvedDelta delta, ObjectId deltaBase)
          Construct a PackedObjectInfo instance for this parser.
 

Methods in org.eclipse.jgit.transport that return types with arguments of type PackedObjectInfo
 List<PackedObjectInfo> PackParser.getSortedObjectList(Comparator<PackedObjectInfo> cmp)
          Get all of the objects, sorted by their name.
 

Methods in org.eclipse.jgit.transport with parameters of type PackedObjectInfo
protected abstract  boolean PackParser.onAppendBase(int typeCode, byte[] data, PackedObjectInfo info)
          Provide the implementation with a base that was outside of the pack.
protected abstract  void PackParser.onEndWholeObject(PackedObjectInfo info)
          Event notifying the the current object.
protected abstract  void PackParser.onInflatedObjectData(PackedObjectInfo obj, int typeCode, byte[] data)
          Invoked for commits, trees, tags, and small blobs.
protected abstract  PackParser.ObjectTypeAndSize PackParser.seekDatabase(PackedObjectInfo obj, PackParser.ObjectTypeAndSize info)
          Reposition the database to re-read a previously stored object.
 

Method parameters in org.eclipse.jgit.transport with type arguments of type PackedObjectInfo
 List<PackedObjectInfo> PackParser.getSortedObjectList(Comparator<PackedObjectInfo> cmp)
          Get all of the objects, sorted by their name.
 



Copyright © 2013. All Rights Reserved.