The R Project SVN R-packages

Rev

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

Rev 6058 Rev 6060
Line 35... Line 35...
35
 
35
 
36
@interface NSString (NSString_RAdditions)
36
@interface NSString (NSString_RAdditions)
37
 
37
 
38
+ (NSString*)stringWithNewUUID;
38
+ (NSString*)stringWithNewUUID;
39
 
39
 
-
 
40
- (NSString *)evaluateAsBashCommandWithEnvironment:(NSDictionary*)shellEnvironment 
-
 
41
	atPath:(NSString*)path 
-
 
42
	callerInstance:(id)caller 
-
 
43
	contextInfo:(NSDictionary*)contextInfo 
-
 
44
	error:(NSError**)theError ignoreOutput:(BOOL)ignoreOutput;
-
 
45
- (NSString *)evaluateAsBashCommandWithEnvironment:(NSDictionary*)shellEnvironment 
-
 
46
	atPath:(NSString*)path error:(NSError**)theError;
-
 
47
- (NSString *)evaluateAsBashCommandAndError:(NSError**)theError;
-
 
48
- (NSString *)evaluateAsBashCommand;
-
 
49
 
40
- (NSString *)runBashCommandWithEnvironment:(NSDictionary*)shellEnvironment atCurrentDirectoryPath:(NSString*)path callerInstance:(id)caller contextInfo:(NSDictionary*)contextInfo error:(NSError**)theError;
50
- (void)runAsBashCommandWithEnvironment:(NSDictionary*)shellEnvironment atPath:(NSString*)path callerInstance:(id)caller contextInfo:(NSDictionary*)contextInfo error:(NSError**)theError;
41
- (NSString *)runBashCommandWithEnvironment:(NSDictionary*)shellEnvironment atCurrentDirectoryPath:(NSString*)path error:(NSError**)theError;
51
- (void)runAsBashCommandWithEnvironment:(NSDictionary*)shellEnvironment atPath:(NSString*)path error:(NSError**)theError;
-
 
52
- (void)runAsBashCommandAndError:(NSError**)theError;
-
 
53
- (void)runAsBashCommand;
42
 
54
 
43
@end
55
@end