/* AMBundleAction.h Copyright (C) 2004-2006 Apple Computer, Inc. All rights reserved. Public header file. */ #import #import @class NSView; // AMBundleAction // ============= @interface AMBundleAction : AMAction { @private IBOutlet NSView *_view; NSBundle *_bundle; NSArray *_topLevelObjects; AM_UNUSED_FOR_ANALYZER id _reserved; AM_UNUSED_FOR_ANALYZER id _reserved2; AM_UNUSED_FOR_ANALYZER id _reserved3; AM_UNUSED_FOR_ANALYZER id _reserved4; } // Construction - (id)initWithDefinition:(NSDictionary *)dict fromArchive:(BOOL)archived; // Operations - (void)awakeFromBundle; - (BOOL)hasView; // Accessors - (NSView *)view; - (NSBundle *)bundle; - (NSMutableDictionary *)parameters; - (void)setParameters:(NSMutableDictionary *)newParameters; @end