You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upon selecting a workspace, it will show a Welcome screen presenting you with mutliple options. For example, there is an option giving you an interactive tutorial showing you how to create a simple Hello-World application.
37
+
Upon selecting a workspace, it will show a Welcome screen presenting you with mutliple options. For example, there is an option to start an interactive tutorial that shows you how to create a simple Hello-World application.
@@ -97,7 +97,7 @@ When running the program, Eclipse should show the output of the program in the `
97
97
<aid="errors"> </a>
98
98
## Dealing with Compilation Errors and Warnings
99
99
100
-
When Eclipse detects a compilation error, the relevant lines are underlined in red. When hovering over the line with the error or the error icon to the left of the said line, Eclipse provides information about what went wrong and also suggests how to fix the error. However, in many cases there are multiple ways to get rid of the error. You need to carefully check whether the suggestions are actually matching what you want to do. After all, IDEs cannot predict your intent.
100
+
When Eclipse detects a compilation error, the relevant lines are underlined in red. When hovering over the line with the error or the error icon to the left of the said line, Eclipse provides information about what went wrong and also suggests Quick Fixes which can fix the error. However, in many cases, there are multiple ways to get rid of the error. You need to carefully check whether the suggestions are actually matching what you want to do. After all, IDEs cannot predict your intent.
101
101
102
102
[](/assets/images/eclipse/compilation_error.png)
103
103
@@ -136,7 +136,7 @@ Upon opening the debug perspective, you should still see your code in the middle
136
136
137
137
While the program is suspended, you can tell it how to continue executing using buttons in the toolbar at the top.
138
138
[](/assets/images/eclipse/debug_toolbar_buttons.png)
139
-
You can execute one line using `Step Over`[](/assets/images/eclipse/debug_step_over.png) (`F6`), go into a method using `Step Into`[](/assets/images/eclipse/debug_step_into.png) (F5) or continue executing the program until the next breakpoint with `Resume`[](/assets/images/eclipse/debug_resume.png) (`F8`).
139
+
You can execute one line using `Step Over`[](/assets/images/eclipse/debug_step_over.png) (`F6`), go into a method using `Step Into`[](/assets/images/eclipse/debug_step_into.png) (`F5`) or continue executing the program until the next breakpoint with `Resume`[](/assets/images/eclipse/debug_resume.png) (`F8`).
140
140
141
141
<aid="generating"> </a>
142
142
## Generating Code
@@ -323,4 +323,4 @@ It is then possible to change to name to something different and confirming it u
323
323
<aid="summary"> </a>
324
324
## Summary
325
325
326
-
As you can see, the Eclipse IDE provides a lot of tools that help developers writing Java applications. While this article shows some, Eclipse comes with many more features which can be especially useful when working on bigger applications. If you are interested in reading more, check out the [Java Development user guide](https://help.eclipse.org/latest/index.jsp?nav=%2F1).
326
+
As you can see, the Eclipse IDE provides a lot of tools that help developers write Java applications. While this article shows some, Eclipse comes with many more features that can be especially useful when working on bigger applications. If you are interested in reading more, check out the [Java Development user guide](https://help.eclipse.org/latest/index.jsp?nav=%2F1).
0 commit comments