JavaCodeLibraryOrBundle.st
branchcvs_MAIN
changeset 3606 ee9b5a43e1d3
parent 3412 df11bb428463
equal deleted inserted replaced
3597:8397ee87e370 3606:ee9b5a43e1d3
    17      of one of the above copright owners. For exact set of such code,
    17      of one of the above copright owners. For exact set of such code,
    18      see the differences between this version and version stx:libjava
    18      see the differences between this version and version stx:libjava
    19      as of 1.9.2010
    19      as of 1.9.2010
    20 "
    20 "
    21 "{ Package: 'stx:libjava' }"
    21 "{ Package: 'stx:libjava' }"
       
    22 
       
    23 "{ NameSpace: Smalltalk }"
    22 
    24 
    23 Object subclass:#JavaCodeLibraryOrBundle
    25 Object subclass:#JavaCodeLibraryOrBundle
    24 	instanceVariableNames:'name'
    26 	instanceVariableNames:'name'
    25 	classVariableNames:''
    27 	classVariableNames:''
    26 	poolDictionaries:''
    28 	poolDictionaries:''
   151 ! !
   153 ! !
   152 
   154 
   153 !JavaCodeLibraryOrBundle methodsFor:'printing & storing'!
   155 !JavaCodeLibraryOrBundle methodsFor:'printing & storing'!
   154 
   156 
   155 printOn:aStream
   157 printOn:aStream
   156     "append a printed representation if the receiver to the argument, aStream"
   158     "append a printed representation of the receiver to the argument, aStream"
   157 
   159 
   158     super printOn:aStream.
   160     super printOn:aStream.
   159     aStream nextPut:$(.
   161     aStream nextPut:$(.
   160     name printOn: aStream.
   162     name printOn: aStream.
   161     aStream nextPut:$).
   163     aStream nextPut:$).
   178 ! !
   180 ! !
   179 
   181 
   180 !JavaCodeLibraryOrBundle class methodsFor:'documentation'!
   182 !JavaCodeLibraryOrBundle class methodsFor:'documentation'!
   181 
   183 
   182 version
   184 version
   183     ^ '$Header: /cvs/stx/stx/libjava/JavaCodeLibraryOrBundle.st,v 1.6 2015-03-20 12:08:00 vrany Exp $'
   185     ^ '$Header$'
   184 !
   186 !
   185 
   187 
   186 version_CVS
   188 version_CVS
   187     ^ '$Header: /cvs/stx/stx/libjava/JavaCodeLibraryOrBundle.st,v 1.6 2015-03-20 12:08:00 vrany Exp $'
   189     ^ '$Header$'
   188 ! !
   190 ! !
   189 
   191