forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjava-tests.ts
34 lines (27 loc) · 877 Bytes
/
java-tests.ts
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
///<reference path="java.d.ts"/>
///<reference path="../bluebird/bluebird.d.ts"/>
import java = require('java');
import BluePromise = require('bluebird');
java.asyncOptions = {
syncSuffix: 'Sync',
asyncSuffix: '',
promiseSuffix: 'P',
promisify: BluePromise.promisify
};
java.registerClientP((): Promise<void> => {
return BluePromise.resolve();
});
interface ProxyFunctions {
[index: string]: Function;
}
java.ensureJvm()
.then(() => {
// java.d.ts does not declare any Java types.
// We can import a java class, but we don't know the shape of the class here, so must use any
var Boolean: any = java.import('java.lang.Boolean');
var functions: ProxyFunctions = {
accept: function(t: any): void { },
andThen: function(after: any): any {}
};
var proxy: any = java.newProxy('java.util.function.Consumer', functions);
});