Download presentation
Presentation is loading. Please wait.
Published bySteven Shaw Modified over 9 years ago
1
Development with Eclipse Software Engineering Prof. Werner Krandick
2
The Basics Eclipse at first glance looks like most other development environments (Visual Studio, JBuilder, etc.)
3
The Basics Basic features Project-based file system Class-oriented browser Actual files become secondary, as Eclipse views the project at the Class (object) level and does file management for you. Organized error viewing and running
4
Why Eclipse? Powerful Versatile works with Java, C, C++, PHP Extensible The whole platform is plug-in based, so new plug-ins are available for many tasks. Free! and Open-source Free download at www.eclipse.orgwww.eclipse.org
5
The Eclipse Environment The Eclipse visual environment’s organization is based on Perspectives ( under the Window menu ). Each perspective is a collection of Views, or internal windows ( also under the Window menu ). Organized for a particular task. Views can be moved, stacked (tabbed), removed or added. All by drag-drop or the options in the Window menu.
6
The Eclipse Environment Built in perspectives Java development Debugging CVS File navigation You also modify or create perspectives ( again, Window menu )
7
The Java Perspective
8
The Debugging Perspective
9
The CVS Perspective
10
Cool Features Automatic Error Detection Errors are detected as you type, and every time you save Code generation Constructors Inherited abstract methods Getters/Setters Import statements Javadoc facilities Note: the features covered here focus on java, not all these features will necessarily be available for C, C++ or other languages.
11
Automatic Error Detection Errors are shown much like spelling errors in word. Double click any listed tasks to jump to that file/line.
12
Code Generation Creating a class - Browse for superclass - Browse for interfaces - Add constructors from superclass
13
Code Generation Getters/Setters - Create data member - Use “Generate getter and setter” under Source menu - Functions and javadoc are auto-generated!
14
Code Generation Import Organization - Write as if you had already done imports - Use “Organize Imports” (source menu) [Ctrl+Shft+O] - Imports are added for you!
15
Javadoc Facilities Need javadoc comments for a function? Use “Add Javadoc Comment” under the source menu! Javadoc comment template will be created for you to fill out with the appropriate information Javadoc for functions from an abstract class or interface will automatically refer to the parent function.
16
Debugging Facilities Eclipse offers various features to make debugging easier Double click on error output to jump to that file/line Keep track of breakpoints Keep track of variables (including variables hidden in objects)
17
CVS integration Eclipse can associate a project with a CVS repository location. Synchronization with CVS repository is then done by right clicking the project (or folder in the project) and selecting “Synchronize” from the “Team” menu.
18
CVS integration Synchronization is also done visually!
19
Continuing with Eclipse Visit www.eclipse.org to download a copy for your home computerwww.eclipse.org Get Release version 3.0 (or latest) Run ‘eclipse’ on any of the machines in the CS Lab This is currently an older version, but much of the functionality is the same
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.