Tools__TextDiffTool.st
branchjv
changeset 12318 1dda95be3d40
parent 12269 79f87eee62e5
child 12401 4714b9640528
child 12405 76f9a872362b
equal deleted inserted replaced
12317:aac0f12a3327 12318:1dda95be3d40
   510     oldValue ~~ newValue ifTrue:[
   510     oldValue ~~ newValue ifTrue:[
   511         self update:#value with:newValue from:contentSpecHolder.
   511         self update:#value with:newValue from:contentSpecHolder.
   512     ].
   512     ].
   513 !
   513 !
   514 
   514 
       
   515 diffView
       
   516 "/    diffView isNil ifTrue:[
       
   517         diffView := self initializeDiffView.
       
   518 "/    ].
       
   519     ^diffView
       
   520 
       
   521     "Created: / 16-01-2013 / 09:45:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   522 !
       
   523 
   515 labelHolder
   524 labelHolder
   516     "return/create the 'labelAHolder' value holder (automatically generated)"
   525     "return/create the 'labelAHolder' value holder (automatically generated)"
   517 
   526 
   518     labelHolder isNil ifTrue:[
   527     labelHolder isNil ifTrue:[
   519         labelHolder := ValueHolder with:'Text diff'.
   528         labelHolder := ValueHolder with:'Text diff'.
   792 
   801 
   793     super initialize.
   802     super initialize.
   794     textAChanged := textBChanged := textBChanged := false.
   803     textAChanged := textBChanged := textBChanged := false.
   795 
   804 
   796     "Modified: / 16-03-2012 / 12:40:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   805     "Modified: / 16-03-2012 / 12:40:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   806 !
       
   807 
       
   808 initializeDiffView
       
   809 
       
   810     self subclassResponsibility
       
   811 
       
   812     "Created: / 16-01-2013 / 09:45:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   797 ! !
   813 ! !
   798 
   814 
   799 !TextDiffTool methodsFor:'testing'!
   815 !TextDiffTool methodsFor:'testing'!
   800 
   816 
   801 isDiff2
   817 isDiff2
   817 ! !
   833 ! !
   818 
   834 
   819 !TextDiffTool class methodsFor:'documentation'!
   835 !TextDiffTool class methodsFor:'documentation'!
   820 
   836 
   821 version_SVN
   837 version_SVN
   822     ^ '$Id: Tools__TextDiffTool.st 8027 2012-07-26 18:46:57Z vranyj1 $'
   838     ^ '$Id: Tools__TextDiffTool.st 8087 2013-01-16 11:53:38Z vranyj1 $'
   823 ! !
   839 ! !