ChangeSetDiffSet.st
branchjv
changeset 3098 67aaf3fadffb
parent 3078 3f5abbdcbde9
child 3099 be6ff432a2ad
equal deleted inserted replaced
3097:5cd4ef31a4e1 3098:67aaf3fadffb
    77     ^ '§Header: /cvs/stx/stx/libbasic3/ChangeSetDiffSet.st,v 1.5 2012/07/31 12:34:33 vrany Exp §'
    77     ^ '§Header: /cvs/stx/stx/libbasic3/ChangeSetDiffSet.st,v 1.5 2012/07/31 12:34:33 vrany Exp §'
    78 ! !
    78 ! !
    79 
    79 
    80 !ChangeSetDiffSet methodsFor:'accessing'!
    80 !ChangeSetDiffSet methodsFor:'accessing'!
    81 
    81 
       
    82 depth
       
    83     | depth |
       
    84     depth := 0.
       
    85     diffs do:[:diff|
       
    86         depth := depth max: diff depth
       
    87     ].
       
    88     ^depth + 1
       
    89 
       
    90     "Created: / 15-01-2013 / 11:27:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    91 !
       
    92 
    82 diffs
    93 diffs
    83     ^ diffs
    94     ^ diffs
    84 !
    95 !
    85 
    96 
    86 flattened
    97 flattened
   277 ! !
   288 ! !
   278 
   289 
   279 !ChangeSetDiffSet class methodsFor:'documentation'!
   290 !ChangeSetDiffSet class methodsFor:'documentation'!
   280 
   291 
   281 version
   292 version
   282     ^ '$Header: /cvs/stx/stx/libbasic3/ChangeSetDiffSet.st,v 1.5 2012/07/31 12:34:33 vrany Exp $'
   293     ^ '$Id: ChangeSetDiffSet.st 1985 2013-01-16 11:55:57Z vranyj1 $'
   283 !
   294 !
   284 
   295 
   285 version_SVN
   296 version_SVN
   286     ^ '$Id: ChangeSetDiffSet.st 1957 2012-09-05 11:45:38Z vranyj1 $'
   297     ^ '$Id: ChangeSetDiffSet.st 1985 2013-01-16 11:55:57Z vranyj1 $'
   287 ! !
   298 ! !