mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
21 lines
341 B
Objective-C
21 lines
341 B
Objective-C
//
|
|
// Created by max on 5/4/12.
|
|
//
|
|
// To change the template use AppCode | Preferences | File Templates.
|
|
//
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <JavaVM/jni.h>
|
|
|
|
|
|
@interface Launcher : NSObject {
|
|
int argc;
|
|
char **argv;
|
|
}
|
|
- (id)initWithArgc:(int)anArgc argv:(char **)anArgv;
|
|
|
|
BOOL validationJavaVersion();
|
|
|
|
- (void) launch;
|
|
@end |