dropbox / djinni

A tool for generating cross-language type declarations and interface bindings.
Apache License 2.0
2.88k stars 488 forks source link

Request: allow option to choose the type of list in Java #390

Open jdevera opened 5 years ago

jdevera commented 5 years ago

list<Something> in IDL generates ArrayList<Something> in Java, but this makes for too restrictive APIs.

I would like to find a way to map list to List in method parameter types.

How can I do this?

Probably the same applies for set.