/* PureMVC - Copyright(c) 2006-08 Futurescale, Inc., Some rights reserved. Your reuse is governed by the Creative Commons Attribution 3.0 United States License */ package org.puremvc.as3.interfaces { /** * The interface definition for a PureMVC Command. * * @see org.puremvc.as3.interfaces INotification */ public interface ICommand { /** * Execute the ICommand's logic to handle a given INotification. * * @param note an INotification to handle. */ function execute( notification:INotification ) : void; } }