2016-03-21 2 views

Antwort

4

können Sie verwenden ein MAPluggableAccessor, etwa so:

descriptionMonths 
    <magritteDescription> 

    ^MANumberDescription new 
     priority: 30; 
     label: 'Months'; 
     accessor: (MAPluggableAccessor 
      read: [ :this | this periodMonths ] 
      write: [ :this :monthsNumber | this periodMonths: monthsNumber ]); 
     yourself 
Verwandte Themen