Difference between revisions of "User:Cgomes7/Basics"
(→Moving and copying Java elements) |
(→Moving and copying Java elements) |
||
Line 30: | Line 30: | ||
<table class="standard-table"> | <table class="standard-table"> | ||
− | |||
<tr> | <tr> | ||
<th> | <th> | ||
Line 41: | Line 40: | ||
</th> | </th> | ||
</tr> | </tr> | ||
+ | <tr> | ||
<td> | <td> | ||
- Right click on a java class -> Refactor -> Move | - Right click on a java class -> Refactor -> Move | ||
Line 46: | Line 46: | ||
<td>[[Image:move.jpg|thumb|widthpx| ]]</td> | <td>[[Image:move.jpg|thumb|widthpx| ]]</td> | ||
</tr> | </tr> | ||
+ | <td> | ||
+ | - Right click on a java class -> Copy | ||
+ | </td> | ||
+ | <td>[[Image:copy.jpg|thumb|widthpx| ]]</td> | ||
<tr> | <tr> | ||
<td> | <td> | ||
Line 51: | Line 55: | ||
</td> | </td> | ||
<td>[[Image:packages.jpg|thumb|widthpx| ]]</td> | <td>[[Image:packages.jpg|thumb|widthpx| ]]</td> | ||
+ | <td> | ||
+ | - Right click package where the file will be placed. -> Paste | ||
+ | </td> | ||
+ | <td>[[Image:paste.jpg|thumb|widthpx| ]]</td> | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
<td> | <td> | ||
− | - | + | - If a file of the type and name exist, you will be asked to rename the file. |
</td> | </td> | ||
− | <td>[[Image: | + | <td>[[Image:rename.jpg|thumb|widthpx| ]]</td> |
</tr> | </tr> | ||
</table> | </table> |
Revision as of 20:15, 1 February 2011
DPS914 - Basic Lab
Contents
- 1 Preparing Eclipse
- 2 Creating your first Java project
- 3 Browsing Java elements using the package explorer
- 4 Editing Java elements
- 5 Creating a Java class
- 6 Renaming Java elements
- 7 Moving and copying Java elements
- 8 Navigate to a Java element's declaration
- 9 Viewing the type Hierarchy
- 10 Searching the workbench
- 11 Running your programs
- 12 Debugging your programs
- 13 Evaluating expressions
- 14 Evaluating snippets
- 15 Using the Java browsing perspective
- 16 Writing and running JUnit tests
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 |
||
- If a file of the type and name exist, you will be asked to rename the file. |