Diff2.st
branchjv
changeset 17134 c4cce8b7a95d
parent 15566 184cea584be5
parent 16949 3b46d0b33f15
equal deleted inserted replaced
17133:f9f20407fbf9 17134:c4cce8b7a95d
    26  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    26  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    27  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    27  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    28  OTHER DEALINGS IN THE SOFTWARE.
    28  OTHER DEALINGS IN THE SOFTWARE.
    29 "
    29 "
    30 "{ Package: 'stx:libtool' }"
    30 "{ Package: 'stx:libtool' }"
       
    31 
       
    32 "{ NameSpace: Smalltalk }"
    31 
    33 
    32 Object subclass:#Diff2
    34 Object subclass:#Diff2
    33 	instanceVariableNames:'file1 file2'
    35 	instanceVariableNames:'file1 file2'
    34 	classVariableNames:''
    36 	classVariableNames:''
    35 	poolDictionaries:''
    37 	poolDictionaries:''
   119 "
   121 "
   120 !
   122 !
   121 
   123 
   122 documentation
   124 documentation
   123 "
   125 "
   124     Generic diff/comm utilities. Agnostic as to the longestCommonSubsequence algorithm used.
   126     Generic diff/comm utilities. 
       
   127     Agnostic as to the longestCommonSubsequence algorithm used.
   125 
   128 
   126     Instance Variables
   129     Instance Variables
   127         file1:          <SequenceableCollection> One of the two files to compare.
   130         file1:          <SequenceableCollection> One of the two files to compare.
   128         file2:          <SequenceableCollection> The other of the files to compare.
   131         file2:          <SequenceableCollection> The other of the files to compare.
   129 
   132 
   839 ! !
   842 ! !
   840 
   843 
   841 !Diff2 class methodsFor:'documentation'!
   844 !Diff2 class methodsFor:'documentation'!
   842 
   845 
   843 version
   846 version
   844     ^ '$Header: /cvs/stx/stx/libtool/Diff2.st,v 1.5 2014-11-24 14:15:56 cg Exp $'
   847     ^ '$Header$'
   845 !
   848 !
   846 
   849 
   847 version_CVS
   850 version_CVS
   848     ^ '$Header: /cvs/stx/stx/libtool/Diff2.st,v 1.5 2014-11-24 14:15:56 cg Exp $'
   851     ^ '$Header$'
   849 ! !
   852 ! !
   850 
   853