Grafoscopio/src/Grafoscopio-ExternalTools/FossilBranch.class.st

30 lines
534 B
Smalltalk

"
I store all the commits under a branch name in a timeline for a fossil repository
Public API and Key Messages
- message one
- message two
- what is the way to create instances is a plus.
One simple example is simply gorgeous.
Internal Representation and Key Implementation Points.
Instance Variables
commits: <Object>
name: <Object>
Implementation Points
"
Class {
#name : #FossilBranch,
#superclass : #Object,
#instVars : [
'name',
'commits'
],
#category : #'Grafoscopio-ExternalTools-Fossil'
}