What does the `ToolingModelBuilderRegistry` do
# gradle
i
What does the
ToolingModelBuilderRegistry
do
t
A registry of tooling model builders. Adding a builder to this registry makes a model (or models) available via the tooling API.
so probably something like android studio needs android specific data so they likely register something custom there to make the integration work. smells like open/closed principle for tooling API
i
Do you think I can access the compilerArguments from there?
t
looks like you would register a model builder with gradle, then use the getModel on the connection to retrieve it
I would think one of the existing models would already have that info
OR you could roll your own
i
@trevjones Thank you I will try one of them