Use initialize, not load, wherever possible.
[adiumx.git] / Source / AIJavaController.h
blob8a1abfa41dfce1bad83893cec8e735ef5da6462c
1 //
2 // AIJavaController.h
3 // Adium
4 //
5 // Created by Andreas Monitzer on 2006-07-31.
6 // Copyright 2006 Andreas Monitzer. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "AIObject.h"
11 #import <Adium/AIJavaControllerProtocol.h>
13 @class NSJavaVirtualMachine;
15 @interface AIJavaController : AIObject <AIJavaController> {
16 NSJavaVirtualMachine *vm;
17 Class JavaCocoaAdapter;
20 @end