I’d like to make quicker a process of creating in every class a piece of code with following definition:
private static String TAG = "%PACKAGE_NAME%.%CLASS_NAME%";
so the sample result should looking like:
package info.chrzanowski.project; // %PACKAGE_NAME%
public class Test { // %CLASS_NAME%
private static String TAG = "info.chrzanowski.project.Test";
}
How can I achieve that with for example using Alt+Insert (Generate popup) or in some else way ?
Edit
Settings | File Templates | Class, refer to the related documentation sections: