简体   繁体   中英

Is there any keyboard shortcut to add @SuppressWarnings on class in IntelliJ Idea?

Is there any shortcut for @SuppressWarnings({"unused", "WeakerAccess"})

Specially on java classes?

You could add a Live Template which you would then engage by typing the template short name and hitting TAB .

Here's an example:

在此处输入图片说明

With this live template you can enter unused + TAB and IntelliJ will auto complete to @SuppressWarnings({"unused", "WeakerAccess"})

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM