Chcę utworzyć szablon na żywo dla Timber logger, podobnie jak domyślny szablon na żywo logm. Używa skryptu Groovy do zbierania parametrów metod i rozdzielania ich przecinkami. NpJak uzyskać typy parametrów metod w żywych szablonach w Intellij IDEA?
public int func(int a, float b, Object c, String d) {
logm
}
generować następujące kod:
public int func(int a, float b, Object c, String d) {
Log.d(TAG, "func() called with: a = [" + a + "], b = [" + b + "], c = [" + c + "], d = [" + d + "]");
}
Parametry zbierają następującym kodu: format typu
def params = _2.collect {it + ' = [" + ' + it + ' + "]'}.join(', ');
return '"' + _1 + '() called' + (params.empty ? '' : ' with: ' + params) + '"'
//Where _1 and _2 - default IDEA methods, in this case
//_1 - methodName(), which eturns the name of the embracing method (where the template is expanded).
//_2 - methodParameters(), which returns the list of parameters of the embracing method (where the template is expanded).
problemem jest metody drewna wymagają dla parametrów, przykład:
int a = 5;
String s = new String("test");
boolean b = false;
Timber.d("%d, %s, %b", a, s, b);
Tak więc muszę określić typy parametrów metody.