+ All Categories
Home > Education > IDA - Eclipse Workshop I (In Danish)

IDA - Eclipse Workshop I (In Danish)

Date post: 11-Nov-2014
Category:
Upload: tonny-madsen
View: 1,792 times
Download: 2 times
Share this document with a friend
Description:
”Medbring din laptop, netbook, mac el.lign. og få i løbet af denne workshop dine første hands-on erfaringer med Eclipse.” Arrangement for IDA. In Danish
Popular Tags:
35
PR0017 - 2009-09-29 Redistribution and other use of this material requires written permission from The RCP Company. Eclipse Workshop I ”Medbring din laptop, netbook, mac el.lign. og få i løbet af denne workshop dine første hands-on erfaringer med Eclipse.” Arrangement for IDA.
Transcript
Page 1: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

Redistribution and other use of this material requires written permission from The RCP Company.

Eclipse Workshop I

”Medbring din laptop, netbook, mac el.lign. og få i løbet af denne workshop dine første hands-on erfaringer med Eclipse.”

Arrangement for IDA.

Page 2: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

2

The Arrangement

“Medbring din laptop, netbook, mac el.lign. og få i løbet af denne workshop dine første hands-on erfaringer med Eclipse.

Program:

- Installation af Eclipse - "Dit første program" - Hvor finder du flere Eclipse plug-ins - specielt med fokus på de teknologier som netop nu er i vælten såsom Android, PHP, ...? - Basal debugging af programmer - Eclipse.dk

Eclipse er et gratis open source IDE, som understøtter Java, C++, C, PHP m.fl.

Eclipse findes til de gængse OS-platforme: Windows, Mac OS X, Linux. I Eclipse integereret man let Webserver, Databaseserver, UML mv.

Workshoppen ledes af Tonny Madsen, Formand/Chairman for Eclipse.dk, Direktør/CEO RCP Kompagniet ApS

Der serveres et let traktement i starten af workshoppen. “

Page 3: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

3

The Timing

Now: Refreshments

13:30: Introduction, Installing Eclipse and Getting Started

15:00: A Short Break

15:15: Developing Java Applications

16:45: A Short Break

17:00: Extending the Eclipse IDE and the Future of Eclipse

18:00: Finish – Time to Go Home

Page 4: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

4

Agenda

Introduction Eclipse is… what exactly? Installing Eclipse Getting started with your first Java program

Demonstration of some relevant Eclipse features for Java development Debugging a Java Program

More Plug-ins and Features Pydev PHP Android

Support and Resources Eclipse e4 – the future of Eclipse

This is a technical talk rather than a business oriented talk…

Page 5: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

5

About Me

Founder and Owner of The RCP Company

20 years of experience in system development in major companies

Regnecentralen (now ICL) Digital (now HP) Anritsu (previously NetTest)

9 years experience as the Systems Architect of an 20+ MLoC project

7 years of experience with Eclipse and Eclipse RCP

Add-in Provider Member of the Eclipse Foundation Chairman of Eclipse.dk Extern Lecturer at IT-University on MDD and DSL

Page 6: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

6

Remember if you have questions…

…ask them!

Page 7: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

7

Eclipse is… what exactly?

Page 8: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

8

Eclipse – The Java IDE

Page 9: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

9

Eclipse – The Tools Platform

Page 10: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

10

Eclipse – The Application Platform Nordea Banking Desktop

Page 11: IDA - Eclipse Workshop I (In Danish)

L0019 - 2008-11-28

11

IBM Lotus NotesVersion 8

Page 12: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

12

Installing Eclipse

Page 13: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

13

Getting Eclipse

Go to “eclipse.org”

Page 14: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

14

Eclipse Editions

Eclipse IDE for Java EE Developers (189 MB) [1,927,084]

Eclipse IDE for Java Developers (92 MB) [948,217]

Eclipse for PHP Developers (139 MB) [469,037]

Eclipse IDE for C/C++ Developers (79 MB) [448,336]

Eclipse for RCP/Plug-in Developers (183 MB) [95,759]

Eclipse Modeling Tools (includes Incubating components) (371 MB) [82,981]

Eclipse IDE for Java and Report Developers (220 MB) [77,009]

Pulsar for Mobile Java Developers (112 MB) [52,241]

Eclipse SOA Platform for Java and SOA Developers (137 MB) [39,284]

Eclipse Classic 3.5.1 (162 MB) [910,114]

Page 15: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

15

Installing Eclipse…

… just unzip somewhere!

It does not use the registry It can be installed on an USB key

Page 16: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

16

Friends of Eclipse

Providing more bandwidth for users and committers Purchasing additional servers to host Eclipse projects Sending students to EclipseCon Sponsoring Eclipse community events

Early access to downloads

Page 17: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

17

Getting Started WithYour First Java Program

Page 18: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

18

Launching Eclipse

Just execute “eclipse.exe”

Select the location of the workspace

Page 19: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

19

Welcome to Eclipse

Page 20: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

20

The Workbench

Page 21: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

21

Organization of the Workspace

Projects All files are put into projects

Folders Files can be organized in folders Some folders are special and are

managed by Eclipse

Files

Some folders and files are hidden

Page 22: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

22

The First Java Application

Create a project

Create a Java package – here “dk.ida.e01”

Create a Java source file – here “HelloWorld”

package dk.ida.e01;

public class HelloWorld {public static void main(String[] arg) {

System.out.println("Hello World");}

}

Page 23: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

23

Launch the Application

Select the project of the Java file

Right click

Select “Run As”

Page 24: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

24

Demonstration of some Relevant Eclipse Features for Java

Development

Page 25: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

25

Debugging a Java Program

Page 26: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

26

More Plug-ins and Features

Page 27: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

27

To Install Something New

Click on “Help” -> “Install New Software…”

Page 28: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

28

Where to Find Stuff

The Standard Sites Galileo - http://download.eclipse.org/releases/galileo The Eclipse Project Updates -

http://download.eclipse.org/eclipse/updates/3.5

Eclipse Marketspace - http://marketplace.eclipse.org/

Page 29: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

29

Support and Resources

Page 30: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

30

Support Sources

Books http://www.eclipse.org/resources/?type=book

Sources All source already included!

Training and Services http://www.eclipse.org/membership/exploreMembership.php

Forums http://www.eclipse.org/forums/

Twitter

User Groups http://www.eclipse.dk/

Page 31: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

31

When You Want to Know More

Eclipse Articles http://www.eclipse.org/resources/

Blogs http://planeteclipse.org/planet/

Webcasts http://live.eclipse.org/

Conferences EclipseCon: http://www.eclipsecon.org/2010/ Eclipse Summit Europe

Forums http://www.eclipse.org/forums/

User Groups http://www.eclipse.dk/

Page 32: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

32

Eclipse e4 – the future of Eclipse

Page 33: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

33

Q&A

Page 34: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

34

After Work Meeting for eclipse.dk

Page 35: IDA - Eclipse Workshop I (In Danish)

PR0017 - 2009-09-29

35

If you want to know more

The foundation: http://eclipse.org

The Danish User Group: http://eclipse.dk

The training: http://www.eclipse.org/community/training/classes.php

Resources on Eclipse http://www.eclipse.org/resources/

Consolidated Blog: http://planeteclipse.org/


Recommended