forked from jessegrosjean/blocks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BExtension.h
40 lines (29 loc) · 833 Bytes
/
BExtension.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// BExtension.h
// Blocks
//
// Created by Jesse Grosjean on 8/21/07.
// Copyright 2007 Blocks. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class BConfigurationElement;
@class BPlugin;
/*
* An extension declared in a plug-in. All information is obtained from the declaring plug-in's
* manifest (Plugin.xml) file.
*/
@interface BExtension : NSObject {
BPlugin *plugin;
NSString *label;
CGFloat processOrder;
NSString *extensionPointUniqueIdentifier;
NSMutableArray *configurationElements;
}
#pragma mark Properties
@property(readonly) BPlugin *plugin;
@property(readonly) NSString *label;
@property(readonly) NSString *extensionPointUniqueIdentifier;
#pragma mark Configuration Elements
@property(readonly) NSArray *configurationElements;
- (NSArray *)configurationElementsNamed:(NSString *)name;
@end