HTMLDocGenerator.st
changeset 1138 aa7687ec256f
parent 917 c77bb2d56e05
child 1140 96ccc944d23a
equal deleted inserted replaced
1137:239b07db4478 1138:aa7687ec256f
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 
    13 
       
    14 
       
    15 "{ Package: 'stx:libhtml' }"
    14 
    16 
    15 Object subclass:#HTMLDocGenerator
    17 Object subclass:#HTMLDocGenerator
    16 	instanceVariableNames:''
    18 	instanceVariableNames:''
    17 	classVariableNames:''
    19 	classVariableNames:''
    18 	poolDictionaries:''
    20 	poolDictionaries:''
  1092     classes := IdentitySet new.
  1094     classes := IdentitySet new.
  1093 
  1095 
  1094     sel := selector asSymbol.
  1096     sel := selector asSymbol.
  1095     Smalltalk allClassesDo:[:cls |
  1097     Smalltalk allClassesDo:[:cls |
  1096         cls isPrivate ifFalse:[
  1098         cls isPrivate ifFalse:[
  1097             (cls implements:sel) ifTrue:[
  1099             (cls includesSelector:sel) ifTrue:[
  1098                 classes add:cls
  1100                 classes add:cls
  1099             ]
  1101             ]
  1100         ]
  1102         ]
  1101     ].
  1103     ].
  1102 
  1104 
  1769 ! !
  1771 ! !
  1770 
  1772 
  1771 !HTMLDocGenerator class methodsFor:'documentation'!
  1773 !HTMLDocGenerator class methodsFor:'documentation'!
  1772 
  1774 
  1773 version
  1775 version
  1774     ^ '$Header: /cvs/stx/stx/libbasic3/HTMLDocGenerator.st,v 1.33 2000-03-24 16:43:16 cg Exp $'
  1776     ^ '$Header: /cvs/stx/stx/libbasic3/HTMLDocGenerator.st,v 1.34 2002-02-25 19:57:49 cg Exp $'
  1775 ! !
  1777 ! !