C# Class GitSharp.Core.RevPlot.PlotCommit

A commit reference to a commit in the DAG.
Inheritance: GitSharp.Core.RevWalk.RevCommit
Afficher le fichier Open project: stschake/GitSharp Class Usage Examples

Méthodes publiques

Свойство Type Description
children GitSharp.Core.RevPlot.PlotCommit[]
lane PlotLane
passingLanes GitSharp.Core.RevPlot.PlotLane[]
refs Ref[]

Méthodes publiques

Méthode Description
PlotCommit ( AnyObjectId id, Ref tags ) : GitSharp.Core.RevWalk

Create a new commit.

addChild ( PlotCommit c ) : void
addPassingLane ( PlotLane c ) : void
getChild ( int nth ) : PlotCommit

Get the nth child from this commit's child list.

getChildCount ( ) : int

Get the number of child commits listed in this commit.

getLane ( ) : PlotLane

Obtain the lane this commit has been plotted into.

isChild ( PlotCommit c ) : bool

Determine if the given commit is a child (descendant) of this commit.

reset ( ) : void

Method Details

PlotCommit() public méthode

Create a new commit.
public PlotCommit ( AnyObjectId id, Ref tags ) : GitSharp.Core.RevWalk
id AnyObjectId the identity of this commit.
tags Ref the tags associated with this commit, null for no tags
Résultat GitSharp.Core.RevWalk

addChild() public méthode

public addChild ( PlotCommit c ) : void
c PlotCommit
Résultat void

addPassingLane() public méthode

public addPassingLane ( PlotLane c ) : void
c PlotLane
Résultat void

getChild() public méthode

Get the nth child from this commit's child list.
public getChild ( int nth ) : PlotCommit
nth int child index to obtain. Must be in the range 0 through () - 1
Résultat PlotCommit

getChildCount() public méthode

Get the number of child commits listed in this commit.
public getChildCount ( ) : int
Résultat int

getLane() public méthode

Obtain the lane this commit has been plotted into.
public getLane ( ) : PlotLane
Résultat PlotLane

isChild() public méthode

Determine if the given commit is a child (descendant) of this commit.
public isChild ( PlotCommit c ) : bool
c PlotCommit the commit to test.
Résultat bool

reset() public méthode

public reset ( ) : void
Résultat void

Property Details

children public_oe property

public PlotCommit[],GitSharp.Core.RevPlot children
Résultat GitSharp.Core.RevPlot.PlotCommit[]

lane public_oe property

public PlotLane,GitSharp.Core.RevPlot lane
Résultat PlotLane

passingLanes public_oe property

public PlotLane[],GitSharp.Core.RevPlot passingLanes
Résultat GitSharp.Core.RevPlot.PlotLane[]

refs public_oe property

public Ref[] refs
Résultat Ref[]