0
I Use This!
Activity Not Available

Project Summary

Modifier Modifier is a plugin for IntelliJ IDEA which provides hotkeys for toggling each Java declaration modifier, including static, final, private/protected/public, for the selected field, method, variable, or class declaration.

Comments and ratings are at JetBrains' IntelliJ IDEA Plugin site.

EXAMPLE
To make some fields non-final:
private final int x;
private final String y = "";
private int z;
private final Object t;

Select from anywhere on the first line to anywhere on the last line, and press Alt+Shift+F.

Result:
private int x;
private String y = "";
private int z;
private Object t;

KEYBOARD SHORTCUTS

Alt+Shift+A
Toggle abstract for current method or class
Alt+Shift+P
Cycle between private/package-private/protected/public for current field, method, constructor, or class (only package-private and public are cycled for non-inner classes)

Alt+Shift+F
Toggle final for current parameter, variable, field, method, or class
Alt+Shift+T
Toggle static for current field, method, or inner class
Alt+Shift+C
Toggle strictfp for current method or class

Alt+Shift+S
Toggle synchronized for current method
Alt+Shift+R
Toggle transient for current field
Alt+Shift+V
Toggle volatile for current field

Alt+Shift+O
Re-order modifiers for the current parameter, variable, field, method, or class according to your modifier order settings (configured in IDEA Settings)

DOWNLOAD
To download Modifier Modifier Plugin, use the IDEA Plugin Manager. Click File->Settings to open IDEA settings, then click Plugins, then click the Available tab. Look for Modifier Modifier Plugin and click the Download button on the toolbar.The source code is available in the Documents & Files section.

Tags

java

In a Nutshell, Modifier Modifier Plugin for IDEA...

 Code analysis has not completed

The Open Hub computes statistics on FOSS projects by examining source code and commit history in source code management systems. The source code for this project has been located, but the analysis isn't complete. Feel free to check its progress.
BSD 4-clause (University of California-Specific)
Permitted

Commercial Use

Modify

Distribute

Place Warranty

Forbidden

Hold Liable

Use Trademarks

Required

Include Copyright

Include License

These details are provided for information only. No information here is legal advice and should not be used as such.

This Project has No vulnerabilities Reported Against it

Did You Know...

  • ...
    nearly 1 in 3 companies have no process for identifying, tracking, or remediating known open source vulnerabilities
  • ...
    search using multiple tags to find exactly what you need
  • ...
    65% of companies leverage OSS to speed application development in 2016
  • ...
    compare projects before you chose one to use

 Code analysis has not completed

The Open Hub computes statistics on FOSS projects by examining source code and commit history in source code management systems. The source code for this project has been located, but the analysis isn't complete. Feel free to check its progress.

Community Rating

Be the first to rate this project
Click to add your rating
  
Review this Project!