data class JavaTarget : Target
Generate .java sources.
JavaTarget(elements: List<String> = listOf("*"), outDirectory: String, android: Boolean = false, androidAnnotations: Boolean = false, compact: Boolean = false)
Generate |
val android: Boolean
True for emitted types to implement |
|
val androidAnnotations: Boolean
True to enable the |
|
val compact: Boolean
True to emit code that uses reflection for reading, writing, and toString methods which are normally implemented with generated code. |
|
val elements: List<String>
Proto types to generate sources for with this target. Types included here will be generated for this target and not for subsequent targets in the task. |
|
val outDirectory: String |