00001 // ** LICENSE BLOCK ** 00002 // 00003 // AMControllable.h 00004 // aria 00005 // 00006 // Created by Yohan Lasorsa on 01/07/09. 00007 // Copyright 2009 INRIA, Team WAM. All rights reserved. 00008 // 00009 00010 #import "AMControl.h" 00011 #import <Foundation/Foundation.h> 00012 00013 00014 // to avoid import loop 00015 @class AMControl; 00016 00020 @protocol AMControllable 00021 00026 - (NSSet *)getControls; 00027 00033 - (AMControl *)getControlWithName:(NSString *)_name; 00034 00040 - (AMControl *)createControlWithName:(NSString *)_name; 00041 00042 @end