Changes between Version 14 and Version 15 of macros


Ignore:
Timestamp:
02/15/2011 03:25:17 PM (13 years ago)
Author:
michael.gruenewald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • macros

    v14 v15  
    3535
    3636
    37 
    3837{{{
    3938#!div style="clear:both;"
     
    6463    Those are called if a class event occurred.
    6564
     65To perform actions on the classes and methods related to the entity in the event, the methods should return a collection of `CTMOperation` elements. At this time, only method operations are implemented. You can add methods to classes or remove them using the following operation constructors:
     66
     67 `CTMMethodOperation class>>add:` ''aSelector'' `in:` ''aClass'' `for:` ''aClassOrMethod'' `with:` ''aSourceString''::
     68    returns an operation to add a method to a class, the parameters should be self-explanatory
     69
     70 `CTMMethodOperation class>>remove:` ''aSelector'' `in:` ''aClass''::
     71    removes a method from a class in the same way
    6672
    6773= How to Extend =