Sha256: 2a1a4047ea087716081a4468365bc6f8ea6bf68865ff8ae9d97b393d756a44cb
Contents?: true
Size: 350 Bytes
Versions: 34
Compression:
Stored size: 350 Bytes
Contents
#import "INotification.h" /** * The interface definition for a PureMVC Command. * * @see INotification */ @protocol ICommand /** * Execute the <code>ICommand</code>'s logic to handle a given <code>INotification</code>. * * @param notification an <code>INotification</code> to handle. */ -(void)execute:(id<INotification>)notification; @end
Version data entries
34 entries across 34 versions & 1 rubygems