Crate javac

Crate javac 

Source
Expand description

A build dependency for compiling Java source code, similar to the cc crate for C/C++.

§Example

javac::Build::new()
    .file("tests/java/com/example/Foo.java")
    .file("tests/java/com/example/Bar.java")
    .compile();

Structs§

Build
A builder for compiling Java source files.
JavaCompiler
Represents a configured Java compiler ready to execute.

Enums§

Error
Error type for javac operations.

Type Aliases§

Result
Result type alias using the custom Error type.