The R Project SVN R-packages

Rev

Rev 5705 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5705 Rev 5987
Line 31... Line 31...
31
 
31
 
32
 
32
 
33
@interface CodeCompletion : NSObject {
33
@interface CodeCompletion : NSObject {
34
 
34
 
35
}
35
}
36
+ (NSString*) complete: (NSString*) part;
36
// + (NSString*) complete: (NSString*) part;
37
+ (NSArray*) completeAll: (NSString*) part cutPrefix: (int) prefix;
37
// + (NSArray*) completeAll: (NSString*) part cutPrefix: (int) prefix;
38
+ (NSArray*) retrieveSuggestionsForScopeRange:(NSRange)scopeRange inTextView:(NSTextView*)textView;
38
+ (NSArray*) retrieveSuggestionsForScopeRange:(NSRange)scopeRange inTextView:(NSTextView*)textView;
39
 
39
 
40
@end
40
@end