JavaTranslationConfig

For the translator

version(WithClassLoadSupport)
struct JavaTranslationConfig {}

Members

Variables

doExports
bool doExports;

List the native methods, assuming they should be exported from D

doImports
bool doImports;

List the Java methods, imported to D.

inlineImplementations
bool inlineImplementations;

Put implementations inline. If false, this separates interface from impl for quicker builds with dmd -i.

nativesAreImports
bool nativesAreImports;

Treat native functions as imports, otherwise fills in as exports. Make sure doImports == true.

Suggestion Box / Bug Report