Difference between revisions of "User:Cgomes7/Basics"
Line 4: | Line 4: | ||
[[Image:Team_5_logo1.gif]] | [[Image:Team_5_logo1.gif]] | ||
+ | |||
+ | == Install Eclipse Subversive plug-in == | ||
+ | [https://zenit.senecac.on.ca/%7Eecl500_111a11/labs/lab1%20-%20Basic/0%20-%20Install%20Eclipse%20Subversive%20plug-in Tung's Tutorial] | ||
+ | |||
== Preparing Eclipse == | == Preparing Eclipse == | ||
Revision as of 08:26, 4 February 2011
DPS914 - Basic Lab
Contents
- 1 Install Eclipse Subversive plug-in
- 2 Preparing Eclipse
- 3 Creating your first Java project
- 4 Browsing Java elements using the package explorer
- 5 Editing Java elements
- 6 Creating a Java class
- 7 Renaming Java elements
- 8 Moving and copying Java elements
- 9 Navigate to a Java element's declaration
- 10 Viewing the type Hierarchy
- 11 Searching the workbench
- 12 Running your programs
- 13 Debugging your programs
- 14 Evaluating expressions
- 15 Evaluating snippets
- 16 Using the Java browsing perspective
- 17 Writing and running JUnit tests
Install Eclipse Subversive plug-in
Preparing Eclipse
Creating your first Java project
Browsing Java elements using the package explorer
- To browse java elements using package explorer, expand the java package to show all the java classes. - Expand a java class, all the java elements are now visible. |
Editing Java elements
Creating a Java class
Renaming Java elements
Moving and copying Java elements
Move Element |
Copy Element |
||
---|---|---|---|
- Right click on a java class -> Refactor -> Move |
- Right click on a java class -> Copy |
||
- Select destination package of the file. |
- Right click package where the file will be placed. -> Paste |
||
- The file has been moved. |
- If a file of the type and name exist, you will be asked to rename the file. |
Viewing the type Hierarchy
Searching the workbench
Running your programs
- Right click on the java class containing the main funtion. -> Run As -> Java Application |
|
- The application should run. |
Debugging your programs
Evaluating expressions
Evaluating snippets
Using the Java browsing perspective
- Select the Perspective menu in the corner of the screen and select "other". |
|
- Select the Java Browsing Perspective. |
|
- The Java Browsing Perspective shows the same information as the Project Explorer Perspective but it organizes it in a tree view. |