Questions tagged [intellij-15]

Use this when developing with the IntelliJ IDEA 15 IDE for Java.

IntelliJ is the newest of the JetBrains IntelliJ IDEA Java IDE family.

This adds many new features, such as lambda debugging, force return, and an improved UI.

Learn more at What's new in IntelliJ IDEA 15.

191 questions
3
votes
1 answer

Android Support + Intellij Ultimate vs. Android Studio

I am developing with Android Studio so far. Now I realized that I am able to get a Intellij Ultimate license. I tried to figure out how to activate the 'ultimate' plugins in my Android Studio. But since Android Studio is based on the community…
Bolic
  • 705
  • 2
  • 12
  • 30
3
votes
2 answers

IntelliJ IDEA 15 Play 2.4 reverse routing method parameter "string cannot be applied to java.lang.String"

I use IntelliJ IDEA 15.0.4 to develop a Java Play! 2.4.4 application. Since a few months (I think it was because of an IntelliJ update, but not 100% sure) the following problem occurs: Whenever I call a reverse route from a controller that takes a…
Raphael Mäder
  • 776
  • 5
  • 16
3
votes
1 answer

Error running scratch file in IntelliJ 15

Code: I get the following when running it: Reference: https://www.youtube.com/watch?v=AmeDNZ-86ig Settings (did not change anything here):
powder366
  • 4,351
  • 7
  • 47
  • 79
3
votes
0 answers

IntelliJ Python Facet vs Python Module

In IntelliJ, I have a Java project (JAVA_MODULE) that also has some Python code. The python code imports numpy, scipy and some other libraries. If I set my Module type to Python, all the import works and there is no squiggly lines. If I set my…
Dat Chu
  • 10,822
  • 13
  • 58
  • 82
3
votes
1 answer

IntelliJ open project, default path

Is there a way to set a default path when opening a project? (File -> Open) . It's always pointing out to X:\Users\\Username. I've been googling and looking inside X:\Users\Username\.IdeaIC15\config\options for configuration file which could be the…
over9k
  • 115
  • 1
  • 10
3
votes
3 answers

Why do I still receive warning for possible NPE in IntelliJ when I do my null checking?

I have a function that could return a null value. So I used JetBrains annotation and put a @Nullable annotation on top of the function. @Nullable public static ConnectionManager getConnectionManager() { return connectionManager; } Then, I…
3
votes
1 answer

Intellij - 15 NotNull Instrumentation errors for code that has been inspected when nothing suspicious is found

I have a little app I started putting together under Intellij-14. It compiled and ran there. When I updated to 15, I started getting NotNull Instrumentation errors for all of the classes. The error message simply states that the class failed --…
GEM
  • 31
  • 4
3
votes
1 answer

IntelliJ IDEA 15 Ultimate, Other Settings missing from Settings window

I recently upgraded from IntelliJ 14 to 15 ultimate and I realized I can no longer configure checkstyles as Other Settings in setting window is completely missing. I cannot understand what I did wrong, and I am not sure if it's some configuration…
Shrikant Havale
  • 1,250
  • 1
  • 16
  • 36
3
votes
1 answer

IntelliJ - Find undocumented public methods

Using IntelliJ IDEA 15, how can I find public methods that lack javadoc and therefore lead to a decrease of the SonarQube metric Public Documented API as shown here?
michaelbahr
  • 4,837
  • 2
  • 39
  • 75
3
votes
2 answers

Setting a module project in Scala as an sbt project?

I'd like to know how to convert a regular scala project into an sbt project. I've tried manually creating an sbt file on the root directory, correctly implemented, but Intellij still doesn't recognize this as a sbt project, i.e, it won't show me in…
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
2
votes
2 answers

InteliJ Bookmarks window is not visible

I use IntelliJ IDEA v2021.1.3 and as mentioned on this page, I checked on View | Tool Windows | Bookmarks to view all bookmarks, but there is not any menu or opened window available as shown on the screenshot. So, is there any bug? Or how can I open…
Jack
  • 1
  • 21
  • 118
  • 236
2
votes
1 answer

IntelliJ - easy way to add all environment variables and PATH locations to the run config

We can add Environment variables one by one environment variables manually using UI screen. But is there a easy way to load/add all PATH locations or Environment variables mentioned in .bashrc file.
2
votes
2 answers

Add Framework Support missing in Intellij

I am trying to add an external library using Maven. Tutorials mention to right click on a module, and select "add framework support." I have looked in detail, and I cannot find that option in my IntelliJ. Here is my current version of IntelliJ Any…
Amir
  • 1,422
  • 1
  • 15
  • 28
2
votes
1 answer

Is com.sun.tools.javac.util available in openjdk 8?

I just installed openjdk 8 from brew in my Mac. However, when I am using Pair: "import com.sun.tools.javac.util.Pair;", although the IntelliJ did not report any error, but it promotes an error states that the "error: package com.sun.tools.javac.util…
fredpan
  • 47
  • 1
  • 10
2
votes
1 answer

How to break on exception in my code at InteliJ

I'm new to Java and using InteliJ Idea community edition. I previously used Visual Studio with C#, where I could select if exception would break (and wait "as breakpoint") on my code only. meaning I could choose to avoid seeing exceptions of 3rd…
user355289
  • 1,100
  • 2
  • 13
  • 23