Last active
September 17, 2017 05:47
-
-
Save ShikherVerma/4ad10e06887b2485259b59b367d9e5e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Map<TypeElement, BindingSet> bindingMap = findAndParseTargets(env); | |
for (Map.Entry<TypeElement, BindingSet> entry : bindingMap.entrySet()) { | |
TypeElement typeElement = entry.getKey(); | |
BindingSet binding = entry.getValue(); | |
JavaFile javaFile = binding.brewJava(sdk, debuggable); | |
javaFile.writeTo(filer); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment