Team1/Moving and copying Java elements

From CDOT Wiki
Revision as of 13:34, 30 January 2011 by Ladanzahir (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

7. Moving and copying Java elements

7.1. To Move a class to another package:
Click on Refactor -> Move
Move1.jpg


7.2. IIn the Move window,chose the new package (destination), e.g."cs.ecl.basics.lab_1" and check the Update references to the moved element(s) then click on OK. .
Move2.jpg


7.3. The following code will be the content of the VehicleRegistration class. Note the package name.
Move3.jpg


7.4. To Copy a class to another package:
Right Click on the class name in the Package Explorer, then select Copy,
Copy1.jpg


7.5. Then right click on the destination package and select Paste. The package name in the copied class would be the same as the destination package name.
Copy2.jpg


7.6. The following code will be the content of the copied VehicleRegistration class. Note the package name.
Copy3.jpg