Early Access Program Features

IntelliJ IDEA 2016.3 Public Preview

There is an old saying, “time flies when you’re having fun.” By that measure, the past three months have been a lot of fun! But today it’s time to give you a glimpse of what has kept us having fun (and busy): IntelliJ IDEA 2016.3, the next update planned for this Fall, is available as a public preview. Everyone is very welcome to download and try its new features, and of course we’re eager to hear your feedback on it.

Here’s a list of the most notable changes in the update:

Java

  • Refactoring to Java 8. Since Java 8 was released, IntelliJ IDEA has been providing inspections that help write correct and idiomatic Java 8. With this update, we’ve gone further and extended our existing inspections to support non-trivial cases. Now, if you click Alt+Enter inside a non-trivial for-loop, the IDE will prompt you to replace it with an chain of the stream API calls. The quick-fix will leverage count, flatMap, map, mapToInt, collect, filter, anyMatch, and other APIs if necessary. Learn more. Also, when appropriate, the IDE will prompt you to replace certain code with Map.computeIfAbsent, Collections.removeIf and Collections.getOrDefault. Learn more.

  • Inspections with no-highlighting policy. We’ve added a new severity value for inspections – no highlighting. In this mode, the Editor doesn’t highlight the code with warnings or errors but does provide quick-fixes. This is similar to intention actions, but inspection quick-fixes can be applied to multiple files at once, which makes them a lot easier to apply. Many existing intention actions have been made into such quick-fixes.

JVM Debugger

  • Class-level Watches. This powerful new feature lets you define Watch expressions on the class level. These watches appear as extra fields of the class but their value is evaluated based on your expressions. An expression for class-level watches is defined in the context of the class.

  • Memory View. This is a new plugin that lets you explore objects in the JVM heap during a debug session. It shows you the total number of objects in the heap grouped by their class name. As you step over the code, the Diff column shows how this number changes between debugger stops. Double-click a class name to open a dialog with instances of this class. Learn more.

Code Editor

  • Parameter Hints. This new feature, enabled by default, shows the names of method parameters for passed values that are literals or nulls. These hints make code more readable. If you find hints redundant for certain methods, you can tell the IDE to hide hints for these methods. Learn more.

  • Semantic highlighting, previously introduced in KDevelop and some other IDEs, is now available in IntelliJ IDEA. It extends the standard syntax highlighting with unique colors for each parameter and local variable. This feature is disabled by default but can be found in SettingsEditorColors & FontsLanguage DefaultsSemantic highlighting.

Build Tools

    • Delegate IDE build/run actions to Gradle. Allows you to delegate the native IntelliJ IDEA Build, Build Artifacts (both WAR and EAR) and Run actions to Gradle. When this option is enabled, all these actions are performed via the corresponding Gradle tasks. The Run action is delegated to the dynamic Gradle JavaExec task configured according to the run configuration. To enable this option, check SettingsBuild, Execution, Deployment  → Build Tools  → Gradle  → Runner  → Delegate IDE build/run actions to gradle. Learn more.
    • Gradle Composite Builds. New powerful option that lets you substitute any of your Gradle dependencies with another project. This feature requires Gradle 3.1 or higher. Learn more.
    • Polyglot Maven. A set of Maven extensions that allows the POM file to be written in Groovy, Scala, Ruby and other languages. While project import works for any language, coding assistance within POM files is available only for Groovy. Learn more.

VCS

  • Git/Mercurial Log. The Log viewer has been reworked some more, this time mainly to improve its ergonomics and speed. Searching via the Text, Author and Path filters is now much faster. Commit details have moved to the right, giving you more screen space. Commit messages in the table are now aligned and thus more readable. Labels have been moved to the right and are now displayed in a more elegant way. Filter values now persist between IDE restarts.

  • Merge and Diff. The Merge dialog now show a Resolve icon on the left side of the Editor when the IDE is capable of resolving the conflict automatically. We’ve added line markers to the dialog to indicate actual changes to the base revision. Last but not least, both Diff and Merge now provide full syntax highlighting for non-local revisions.

  • Managing Remotes. Now, the IDE provides an interface for managing Git remotes for every repo in the project.

JavaScript

  • ECMAScript 6. IntelliJ IDEA now reports all var declarations and helps replace them with let or const declarations, depending on recognized value semantics. For all require() calls, the IDE now provides a quick-fix that replaces them with import statements. Other improvements include better support for destructuring assignments, and default exports.

  • TypeScript. TypeScript gets a more accurate rename refactoring for overridden methods, and a quick-fix to shorten import statements.

  • Flow. Now, when you set the JavaScript version to Flow, the IDE reports problems in the files annotated with “// @flow” on the fly.

Android

  • Blueprint. A new mode in the Designer that hides all of the visuals from views and shows only their outlines. You can choose to have it side by side with the Designer.

  • Constraint Layout. This is a new layout manager which allows you to create large and complex layouts with a flat view hierarchy. It’s similar to Relative Layout in that all views are laid out according to relationships between sibling views and the parent layout, but it’s more flexible and easier to use.

  • Instant Run. The update has brought many stability and reliability improvements to Instant Run. If you have previously disabled it, the Android team encourages you to re-enable it.
  • APK Analyzer. It lets you drill into your APK to help you reduce your APK size, debug 64K method limit issues, view contents of Dex files and more.

Databases

  • Editing Multiple Cells. Now you can edit several similar cells at once. Select several cells and start typing the value.

  • Bulk Submit. Now changes made in the Table Editor are stored locally and submitted in bulk, via Ctrl+Enter (Cmd+Enter for OS X). Changes not yet submitted can be canceled via Undo.

Toolbox App

  • Toolbox App is a new desktop application that lets you install and update all JetBrains IDEs with ease. Learn more.

To download the preview build (available in both IntelliJ IDEA editions) and to learn about other improvements in the update, go to our website. As always, your feedback is very appreciated in our issue tracker!

Develop with Pleasure!

image description