Beginner - Netbeans IDE 18 - Questions! #6137
-
Hello, i'm taking my first steps with Java, using Netbeans on Linux (Kali), and I have some questions. I was using IDE version 12 and migrated to IDE 18, and I noticed some differences. 1 - Why does the class name come with "App" instead of "Main" when I create a project using Gradle in IDE 18? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
1,2 You can update class names and java files using Refactor/Rename in the menubar and popup menu. Refactoring updates the class name, file name to match and updates all of the references to the class in your source code. HTH, |
Beta Was this translation helpful? Give feedback.
1,2 You can update class names and java files using Refactor/Rename in the menubar and popup menu. Refactoring updates the class name, file name to match and updates all of the references to the class in your source code.
Check here for more hints https://netbeans.apache.org/kb/docs/java/index.html
3 I dont know much about Gradle but those are simply default project names applied to files created when you create a new project. You can create custom names when you create a new project.
4 Yes, Ant, Maven and Gradel all handle the same basic tasks but in different ways. Consult the manual for each build tool on the internets.
HTH,
Ed