forked from jessegrosjean/blocks
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBExtensionPoint.h
More file actions
36 lines (27 loc) · 844 Bytes
/
BExtensionPoint.h
File metadata and controls
36 lines (27 loc) · 844 Bytes
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
//
// BExtensionPoint.h
// Blocks
//
// Created by Jesse Grosjean on 8/21/07.
// Copyright 2007 Blocks. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class BPlugin;
/*
* An extension point declared in a plug-in. Except for the list of extensions plugged in to it,
* the information available for an extension point is obtained from the declaring plug-in's manifest (Plugin.xml) file.
*/
@interface BExtensionPoint : NSObject {
BPlugin *plugin;
NSString *identifier;
NSString *documentation;
}
#pragma mark Properties
@property(readonly) BPlugin *plugin;
@property(readonly) NSString *identifier;
@property(readonly) NSString *documentation;
#pragma mark Extensions
@property(readonly) NSArray *extensions;
@property(readonly) NSArray *configurationElements;
- (NSArray *)configurationElementsNamed:(NSString *)name;
@end