MethodFinderWindow.st
changeset 3696 530f3998b3a2
parent 3695 bc4ff07233d7
child 3697 46c77420db3b
equal deleted inserted replaced
3695:bc4ff07233d7 3696:530f3998b3a2
  1690 
  1690 
  1691                         ].
  1691                         ].
  1692 ^receiverWithArgument
  1692 ^receiverWithArgument
  1693 ! !
  1693 ! !
  1694 
  1694 
       
  1695 !MethodFinderWindow methodsFor:'help - demonstration'!
       
  1696 
       
  1697 showMeHowItWorks
       
  1698     ShowMeHowItWorks do:#(
       
  1699         showing: 'Choose the number of arguments'
       
  1700         do: (
       
  1701             moveTo: NumberOfArguments
       
  1702             select: '1'
       
  1703         )    
       
  1704         showing: 'Click into the "receiver" field'
       
  1705         do: (
       
  1706             moveTo: ReceiverEditor
       
  1707             click: ReceiverEditor
       
  1708         )
       
  1709         showing: 'Enter a value (or expression) into "receiver" field'
       
  1710         do: (
       
  1711             enter: '100'
       
  1712         )
       
  1713         showing: 'Click into the "first argument" field'
       
  1714         do: (
       
  1715             moveTo: Arg1Editor
       
  1716             click: ReceiverEditor
       
  1717         )
       
  1718         showing: 'Enter a value (or expression) into "receiver" field'
       
  1719         do: (
       
  1720             enter: '100'
       
  1721         )
       
  1722         
       
  1723     )
       
  1724 
       
  1725     "Created: / 18-07-2019 / 21:59:06 / Claus Gittinger"
       
  1726 ! !
       
  1727 
  1695 !MethodFinderWindow methodsFor:'initialization'!
  1728 !MethodFinderWindow methodsFor:'initialization'!
  1696 
  1729 
  1697 argument1WidgetCreated: aWidget
  1730 argument1WidgetCreated: aWidget
  1698     "UI post creation hook. remember the widget as an instance variable."
  1731     "UI post creation hook. remember the widget as an instance variable."
  1699 
  1732