Getting started with Eclipse By Alexander Butyaev.

Slides:



Advertisements
Similar presentations
Introduction to Eclipse cs112b1 – Lab01 by Rui Shi.
Advertisements

Introduction to Eclipse. Start Eclipse Click and then click Eclipse from the menu: Or open a shell and type eclipse after the prompt.
Using Eclipse. Getting Started There are three ways to create a Java project: 1:Select File > New > Project, 2 Select the arrow of the button in the upper.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
KEVIN DANIELS ECLIPSE. OVERVIEW Integrated Development Environment (IDE) Usually used to develop applications in various programming languages (C, C++.
Java Integrated Development Environments: ECLIPSE Part1 Installation.
20-Jun-15 Eclipse. Most slides from: 2 About IDEs An IDE is an Integrated Development Environment.
Introduction to Java Lab CS110A – Lab Section 004 Instructor: Duo Wei.
Eclipse Introduction Dwight Deugo Nesa Matic
PayDox applications All features can be used independently.
Eclipse Begin at the Beginning. Where to Find it:
Eclipse IDE. 2 IDE Overview An IDE is an Interactive Development Environment Different IDEs meet different needs BlueJ and DrJava are designed as teaching.
03 Using Eclipse. 2 IDE Overview An IDE is an Interactive Development Environment Different IDEs meet different needs BlueJ and DrJava are designed as.
Getting Started With Java Downloading and installing software Running your first program Dr. DwyerFall 2012.
1 eclipse Tips. 2 What is eclipse? Eclipse is a popular IDE (Integrated Development Environment) that we will use to create, compile, execute, and test.
Chapter 1a© copyright Janson Industries RAD ▮ Explain Eclipse, RAD, and their relationship ▮ Basic RAD concepts ▮ How to install RAD ▮ How to import.
XP New Perspectives on Browser and Basics Tutorial 1 1 Browser and Basics Tutorial 1.
Author: Loh Jianxiong Christopher Editors: Chua Jie Sheng, Li Mengran, Peh Shao Hong, Oo Theong Siang.
1 Development Environments AUBG, COS dept Lecture Title: Dev Env: Eclipse (Extract from Syllabus) Reference:
LLRP GUI Client User Guide
Introduction to Eclipse Plug-in Development. Who am I? Scott Kellicker Java, C++, JNI, Eclipse.
Workbench Overview Dwight Deugo Nesa Matic
Plug-in Development Environment. Session Outline Tools Installation Configuration New Project Basic Debugging Remote Debugging.
SENG 301 – Tutorial 1 Introduction to Eclipse, Subclipse, and JUnit Slides: Theodore D. Hellmann.
IDEs Department of Information Systems and Computer Science Ateneo de Manila University.
Introduction to Eclipse CSC 216 Lecture 3 Ed Gehringer Using (with permission) slides developed by— Dwight Deugo Nesa Matic
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Introduction to Android (Part.
Introduction to Eclipse. What is Eclipse? An Integrated Development Environment Provides many features to ease C++ programming (and others, e.g. C/Java)
CS 614: Theory and Construction of Compilers Lecture 18 Fall 2003 Department of Computer Science University of Alabama Joel Jones.
Welcome To Eclipse. Basic Concepts Workspace – directory where your projects are stored –Projects grouping of related works –Resources generic term to.
Eclipse Eclipse An IDE is an Integrated Development Environment Different IDEs meet different needs – BlueJ, DrJava are designed as teaching.
Creating and running a Java program. Eclipse Interactive Development Environment (IDE)  Eclipse is an Interactive Development Environment (IDE) for Java.
9/2/ CS171 -Math & Computer Science Department at Emory University.
Eclipse. An IDE is an Integrated Development Environment Different IDEs meet different needs BlueJ, DrJava are designed as teaching tools Emphasis is.
Eclipse 3.1 IDE Overview.
Topic Java EE installation (Eclipse, glassfish, etc.) Eclipse configuration for EE Creating a Java Web Dynamic Project Creating your first servlet.
GumTree Development Environment Setup Windows Only Compatible with Eclipse 3.2 M3 (Last update: 16/11/05)
Eclipse 24-Apr-17.
First Venture into the Android World Chapter 1 Part 2.
Eclipse and JUnit. Eclipse Terms The Workbench Perspective –Collection of editors and views –Exampes: Java Pers., Debugging Persp. Editors (create a file)
Eclipse. An IDE is an Integrated Development Environment Different IDEs meet different needs BlueJ, DrJava are designed as teaching tools Emphasis is.
Introduction to Common Java Development Tools (1) 1.
Development with Eclipse Software Engineering Prof. Werner Krandick.
Introduction to Eclipse Al-Zahra Univerisity Advanced Programming Arash N. Kia.
© 2002 IBM Corporation Transaction Processing Facility TPF Users Group Acapulco May 2004 © 2004 IBM Corporation Pete Nicholls IBM Toronto Lab TPF Toolkit.
PART 2 INTRODUCTION TO DYNAMIC WEB CONTENT AND PHP.
1 Installing Java on Your PC. Installing Java To develop Java programs on your PC: Install JDK (Java Development Kit) Add the directory where JDK was.
Introduction to Eclipse Programming with an Integrated Development Environment.
The Development Process Compilation. Compilation - Dr. Craig A. Struble 2 Programming Process Problem Solving Phase We will spend significant time on.
Eclipse 27-Apr-17.
Working with ASP.NET Controls What is ASP.NET Using server controls in your pages Allowing users to create their own accounts Creating a login page Letting.
Java IDE Dwight Deugo Nesa Matic
Author: Loh Jianxiong Christopher Contributions: Chua Jie Sheng, Li Mengran, Peh Shao Hong, Oo Theong Siang, Tong Chun Kit, Tania Chattopadhyay.
The eclipse IDE IDE = “Integrated Development Environment”
Development Environment
Development with Eclipse
Introduction to Eclipse
ATS Application Programming: Java Programming
SENG 301 – Tutorial 1 Introduction to Eclipse, Subclipse, and JUnit
Eclipse Navigation & Usage.
IDE++ User study & Eclipse Tutorial
Eclipse 20-Sep-18.
Some Tips for Using Eclipse
CIS 470 Mobile App Development
Test-Driven Development
CIS 470 Mobile App Development
Java IDE Dwight Deugo Nesa Matic Portions of the notes for this lecture include excerpts from.
Test-Driven Development
Presentation transcript:

Getting started with Eclipse By Alexander Butyaev

Eclipse Language-neutral (Java, HTML, C/C++ etc) IDE – integrated development environment Facilitate seamless tool integration (add new tools to existing installed products)

To run eclipse… Use your CS login and password (e.g. Alexader Butyaev = abutya) – OR Login to McGill Computer using your McGill and McGill password (usually it is the same as your password in McGill Minerva system) - !!!TEMPORARY SPACE!!! – go to to create new user, it will ask you to enter McGill ID, First name, Second Name.

To run eclipse… Run Eclipse (use double click / Enter button / ask neighbor). Use dashboard – type “Eclipse” Create/open workspace – directory, where Eclipse will store almost all your code, resources, projects etc.

Let’s be awesome programmers! Following slides are taken from se-slides.ppt

Workbench Terminology Perspective and Fast View bar Resource Navigator view Stacked views Properties view Tasks view Bookmarks view Menu bar Message area Editor Status area Text editor

Java Perspective Java-centric view of files in Java projects – Java elements meaningful for Java programmers Java project package class field method Java editor

Java Editor Hovering over identifier shows Javadoc spec

9 Java Editor Method completion in Java editor List of plausible methodsDoc for method

10 Java Editor On-the-fly spell check catches errors early Preview Click to see fixes Problem Quick fixes

11 Java Editor Code templates help with drudgery Statement template Preview

And so on… More features: here: slides.pptwww.eclipse.org/eclipse/presentation/eclipse- slides.ppt

Why we really need this? Simplification of writing code. All attention - to the idea Helps to write good readable Java code (Formatting, Refactoring) Simplification of running, debugging process Because COMP250 instructors advise to use this IDE

Let’s Do Practice Create your own project: – File  New  Project  Java Project Download both files from – Put files in your workspace/Project_Name/src – They will automatically appeared in default package under src folder (Project Explorer). Have a look at Example00.java – Looks good? Let’s run (“Play” button). What’s wrong?! Have a look at Example01.java – Doesn’t look good? Point on the red underlining. What’s wrong?!

Questions?

Do something useful [Optional] Use Eclipse as “cool” as possible. – Create any Class. – Create main method. (type “main” and use Ctrl+space). That’s it. – Want output something on the screen (Type “syso” and Ctrl+space). – And bla bla bla… So – you can type “if”, “while”, “for”, “switch” – But remember – computer is still stupid