Uses of Class
org.eclipse.jgit.lib.PersonIdent

Packages that use PersonIdent
org.eclipse.jgit.api   
org.eclipse.jgit.blame   
org.eclipse.jgit.lib   
org.eclipse.jgit.revwalk   
org.eclipse.jgit.storage.file   
org.eclipse.jgit.transport   
org.eclipse.jgit.util   
 

Uses of PersonIdent in org.eclipse.jgit.api
 

Methods in org.eclipse.jgit.api that return PersonIdent
 PersonIdent CommitCommand.getAuthor()
           
 PersonIdent CommitCommand.getCommitter()
           
 PersonIdent TagCommand.getTagger()
           
 

Methods in org.eclipse.jgit.api with parameters of type PersonIdent
 CommitCommand CommitCommand.setAuthor(PersonIdent author)
          Sets the author for this commit.
 CommitCommand CommitCommand.setCommitter(PersonIdent committer)
          Sets the committer for this commit.
 StashCreateCommand StashCreateCommand.setPerson(PersonIdent person)
          Set the person to use as the author and committer in the commits made
 TagCommand TagCommand.setTagger(PersonIdent tagger)
          Sets the tagger of the tag.
 

Uses of PersonIdent in org.eclipse.jgit.blame
 

Methods in org.eclipse.jgit.blame that return PersonIdent
 PersonIdent BlameGenerator.getSourceAuthor()
           
 PersonIdent BlameResult.getSourceAuthor(int idx)
          Get the author that provided the specified line of the result.
 PersonIdent BlameGenerator.getSourceCommitter()
           
 PersonIdent BlameResult.getSourceCommitter(int idx)
          Get the committer that provided the specified line of the result.
 

Uses of PersonIdent in org.eclipse.jgit.lib
 

Methods in org.eclipse.jgit.lib that return PersonIdent
 PersonIdent CommitBuilder.getAuthor()
           
 PersonIdent CommitBuilder.getCommitter()
           
 PersonIdent RefUpdate.getRefLogIdent()
           
 PersonIdent RefRename.getRefLogIdent()
           
 PersonIdent TagBuilder.getTagger()
           
 

Methods in org.eclipse.jgit.lib with parameters of type PersonIdent
 void CommitBuilder.setAuthor(PersonIdent newAuthor)
          Set the author (name, email address, and date) of who wrote the commit.
 void CommitBuilder.setCommitter(PersonIdent newCommitter)
          Set the committer and commit time for this object
 void RefUpdate.setRefLogIdent(PersonIdent pi)
          Set the identity of the user appearing in the reflog.
 void RefRename.setRefLogIdent(PersonIdent pi)
          Set the identity of the user appearing in the reflog.
 void TagBuilder.setTagger(PersonIdent taggerIdent)
          Set the creator of this tag.
 

Constructors in org.eclipse.jgit.lib with parameters of type PersonIdent
PersonIdent(PersonIdent pi)
          Copy a PersonIdent.
PersonIdent(PersonIdent pi, Date aWhen)
          Copy a PersonIdent, but alter the clone's time stamp
PersonIdent(PersonIdent pi, Date when, TimeZone tz)
          Copy a PersonIdent, but alter the clone's time stamp
PersonIdent(PersonIdent pi, long aWhen, int aTZ)
          Copy a PersonIdent, but alter the clone's time stamp
 

Uses of PersonIdent in org.eclipse.jgit.revwalk
 

Methods in org.eclipse.jgit.revwalk that return PersonIdent
 PersonIdent RevCommit.getAuthorIdent()
          Parse the author identity from the raw buffer.
 PersonIdent RevCommit.getCommitterIdent()
          Parse the committer identity from the raw buffer.
 PersonIdent RevTag.getTaggerIdent()
          Parse the tagger identity from the raw buffer.
 

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

Methods in org.eclipse.jgit.storage.file that return PersonIdent
 PersonIdent ReflogEntry.getWho()
           
 

Methods in org.eclipse.jgit.storage.file with parameters of type PersonIdent
 ReflogWriter ReflogWriter.log(String refName, ObjectId oldId, ObjectId newId, PersonIdent ident, String message)
          Write the given entry information to the ref's log
 

Uses of PersonIdent in org.eclipse.jgit.transport
 

Methods in org.eclipse.jgit.transport that return PersonIdent
 PersonIdent BaseReceivePack.getRefLogIdent()
           
 

Methods in org.eclipse.jgit.transport with parameters of type PersonIdent
 void BaseReceivePack.setRefLogIdent(PersonIdent pi)
          Set the identity of the user appearing in the affected reflogs.
 

Uses of PersonIdent in org.eclipse.jgit.util
 

Methods in org.eclipse.jgit.util that return PersonIdent
static PersonIdent RawParseUtils.parsePersonIdent(byte[] raw, int nameB)
          Parse a name line (e.g.
static PersonIdent RawParseUtils.parsePersonIdent(String in)
          Parse a name string (e.g.
static PersonIdent RawParseUtils.parsePersonIdentOnly(byte[] raw, int nameB)
          Parse a name data (e.g.
 

Methods in org.eclipse.jgit.util with parameters of type PersonIdent
static ObjectId ChangeIdUtil.computeChangeId(ObjectId treeId, ObjectId firstParentId, PersonIdent author, PersonIdent committer, String message)
          Compute a Change-Id.
 String GitDateFormatter.formatDate(PersonIdent ident)
          Format committer, author or tagger ident according to this formatter's specification.
 



Copyright © 2012. All Rights Reserved.