Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Eclipse DemoCamps Juno 2012/Hamburg"

m (Who Is Attending)
(Who Is Attending)
 
(43 intermediate revisions by 30 users not shown)
Line 35: Line 35:
  
 
=== Agenda  ===
 
=== Agenda  ===
 +
 +
* 18.00: Get together
 +
* 18.30: Opening/Welcome
 +
* 18.40 - 19.00: Eclipse Code Recommenders (Marcel Bruch)
 +
* 19:05 - 19:25: BundleMaker - analyze and restructure your application (Gerd Wütherich, Nils Hartmann)
 +
* 19:30 - 19.50: [http://devboost.de/en/Innovation#JaMoPP JaMoPP] - a Open-Source-Tool for Analyzing and Modernizing Software (Jendrik Johannes)
 +
 +
break
 +
 +
* 20:20 - 20:40: Release engineering with Tycho and P2 (Matthias Köster)
 +
* 20:45 - 21:05: GEFGWT: GEF in JavaScript, in the browser, on the iPad (Frank Gerhardt)
 +
* 21:10 - 21:30: Building native mobile clients with RAP (Johannes Eickhold)
 +
 +
break
 +
 +
* 21:45 - 22:05: Xtend - A Coffeescript for Java (Jan Köhnlein)
 +
* 22:10 - 22:30: Type-safe DSLs, using Xtext/TS, Groovy and other languages (Werner Keil)
 +
 +
===Details===
  
 
* '''Xtend - A Coffeescript for Java''' ([http://koehnlein.blogspot.de Jan Köhnlein], itemis)
 
* '''Xtend - A Coffeescript for Java''' ([http://koehnlein.blogspot.de Jan Köhnlein], itemis)
 
:Xtend is a statically-typed, functional and object-oriented programming language which is translated directly to comprehensible Java source code. The language is developed at Eclipse.org and reuses Java's syntax, terminology and concepts as much as possible, but abandons some dead freight at the same time. Xtend is a very powerful alternative for implementing Java classes and works great with all the existing libraries. Since the language can be seen as a little complementary add-on to Java, it offers many modern language features, reaching from type inference over lambdas and extension methods up to smart string interpolation that make development great fun, again. And of course there is powerful Eclipse IDE integration available.
 
:Xtend is a statically-typed, functional and object-oriented programming language which is translated directly to comprehensible Java source code. The language is developed at Eclipse.org and reuses Java's syntax, terminology and concepts as much as possible, but abandons some dead freight at the same time. Xtend is a very powerful alternative for implementing Java classes and works great with all the existing libraries. Since the language can be seen as a little complementary add-on to Java, it offers many modern language features, reaching from type inference over lambdas and extension methods up to smart string interpolation that make development great fun, again. And of course there is powerful Eclipse IDE integration available.
 
:In this session I will demonstrate why Xtend is so great for everyday programming. You will get an in-depth impression of the seamless integration with the Eclipse Java IDE and you'll get an impression of the expressiveness and conciseness of Xtend.
 
:In this session I will demonstrate why Xtend is so great for everyday programming. You will get an in-depth impression of the seamless integration with the Eclipse Java IDE and you'll get an impression of the expressiveness and conciseness of Xtend.
* '''Using Xtext/TS for type-safe DSLs''' (Werner Keil, [http://www.catmedia.us Creative Arts & Technologies])
+
* '''Type-safe DSLs, using Xtext/TS, Groovy and other languages''' (Werner Keil, [http://www.catmedia.us Creative Arts & Technologies])
 
:As a perfect follow-up to Xtend, this session is going to present [http://www.infoq.com/articles/xtext_ts Xtext/TS], a type system framework for Xtext. Groovy founder [http://groovy.dzone.com/users/glaforge Guillaume Laforge] built on top of the Java standard proposal for type safe Units of Measurements, JSR-275 with his case study of a [http://groovy.dzone.com/news/domain-specific-language-unit- Domain-Specific Language for unit manipulations] some while ago.
 
:As a perfect follow-up to Xtend, this session is going to present [http://www.infoq.com/articles/xtext_ts Xtext/TS], a type system framework for Xtext. Groovy founder [http://groovy.dzone.com/users/glaforge Guillaume Laforge] built on top of the Java standard proposal for type safe Units of Measurements, JSR-275 with his case study of a [http://groovy.dzone.com/news/domain-specific-language-unit- Domain-Specific Language for unit manipulations] some while ago.
:Based on [http://www.unitsofmeasurement.org Unit-API] the successor to JSR-275, and its leading Open Source implementation [http://www.eclipse.org/uomo Eclipse UOMo] together with Xtext/TS we'll see, how a similar DSL for unit manipulations can be created with Xtext.
+
:Based on [http://www.unitsofmeasurement.org Unit-API] the successor to JSR-275, and its leading Open Source implementation [http://www.eclipse.org/uomo Eclipse UOMo] together with Xtext/TS we'll see, how a similar DSL for unit manipulations could be created with Xtext.
  
* '''JaMoPP - a Open-Source-Tool for Analyzing and Modernizing Software.''' ([http://www.xing.com/profile/Jendrik_Johannes Jendrik Johannes], [http://www.devboost.de DevBoost GmbH])
+
* '''[http://devboost.de/en/Innovation#JaMoPP JaMoPP] - a Open-Source-Tool for Analyzing and Modernizing Software.''' ([http://www.xing.com/profile/Jendrik_Johannes Jendrik Johannes], [http://www.devboost.de DevBoost GmbH])
 
:Java code makes up a large part of most enterprise systems. To keep these systems maintainable, extendable and flexible in the long run, constant checking of the consistency of code and other artefacts is necessary. Coding guidelines need to be followed, anti-patterns need to be avoided and interfaces need to be used correctly.
 
:Java code makes up a large part of most enterprise systems. To keep these systems maintainable, extendable and flexible in the long run, constant checking of the consistency of code and other artefacts is necessary. Coding guidelines need to be followed, anti-patterns need to be avoided and interfaces need to be used correctly.
 
:JaMoPP addresses theses challenges. JaMoPP automatically converts your Java code base into an EMF model. This model can be processed by a large number of tools based on EMF (e.g. Xtend). Additionally, the model can be linked with any other artefact that is represented as an EMF model. On the base of this integrated model, individual guidlines for your software can be defined. This way, structural problems are recognised instantly and, if required, repaired automatically.
 
:JaMoPP addresses theses challenges. JaMoPP automatically converts your Java code base into an EMF model. This model can be processed by a large number of tools based on EMF (e.g. Xtend). Additionally, the model can be linked with any other artefact that is represented as an EMF model. On the base of this integrated model, individual guidlines for your software can be defined. This way, structural problems are recognised instantly and, if required, repaired automatically.
Line 69: Line 88:
 
If you plan on attending please add your name and company to the list below. You need to have an Eclipse Bugzilla account to do so. Signing up is really easy and not only gives you the chance to attend Eclipse DemoCamps, but also gives you the sweet fuzzy feeling of being able to file Eclipse bugs! Come on, give it a try - [https://bugs.eclipse.org/bugs/ we know you can do it]!  
 
If you plan on attending please add your name and company to the list below. You need to have an Eclipse Bugzilla account to do so. Signing up is really easy and not only gives you the chance to attend Eclipse DemoCamps, but also gives you the sweet fuzzy feeling of being able to file Eclipse bugs! Come on, give it a try - [https://bugs.eclipse.org/bugs/ we know you can do it]!  
  
#[http://www.peterfriese.de Peter Friese], [http://www.zuehlke.com/ Zühlke Engineering]
+
#[http://www.peterfriese.de Peter Friese], [http://www.zuehlke.com/ Zühlke Engineering]  
#[http://www.martinlippert.de Martin Lippert], SpringSource - a division of vmware
+
#[http://www.martinlippert.de Martin Lippert], SpringSource - a division of vmware  
#[http://blog.efftinge.de Sven Efftinge], itemis
+
#[http://blog.efftinge.de Sven Efftinge], itemis  
#[http://koehnlein.blogspot.de Jan Köhnlein], itemis
+
#[http://koehnlein.blogspot.de Jan Köhnlein], itemis  
#Werner Keil, [http://www.catmedia.us/ Creative Arts & Technologies]
+
#Werner Keil, [http://www.catmedia.us/ Creative Arts & Technologies]  
#Jan Ortmann, [http://www.mondula.com Mondula]
+
#Jan Ortmann, [http://www.mondula.com Mondula]  
#[http://www.danieldietrich.net Daniel Dietrich], [http://www.hsh-nordbank.de HSH Nordbank]
+
#[http://www.danieldietrich.net Daniel Dietrich], [http://www.hsh-nordbank.de HSH Nordbank]  
#[http://de.linkedin.com/pub/philip-wenig/2a/4a8/877 Philip Wenig], [http://www.openchrom.net OpenChrom]
+
#[http://de.linkedin.com/pub/philip-wenig/2a/4a8/877 Philip Wenig], [http://www.openchrom.net OpenChrom]  
#[http://www.xing.com/profile/Jendrik_Johannes Jendrik Johannes], [http://www.devboost.de DevBoost GmbH]
+
#[http://www.xing.com/profile/Jendrik_Johannes Jendrik Johannes], [http://www.devboost.de DevBoost GmbH]  
#[http://www.xing.com/profile/Matthias_Koester Matthias Köster], [http://www.numberfour.eu NumberFour AG]
+
#[http://www.xing.com/profile/Matthias_Koester Matthias Köster], [http://www.numberfour.eu NumberFour AG]  
#[http://xing.to/fgdrf Frank Gasdorf], [http://www.plath.de PLATH GmbH]
+
#[http://xing.to/fgdrf Frank Gasdorf], [http://www.plath.de PLATH GmbH]  
#[http://www.xing.com/profile/Oliver_Libutzki Oliver Libutzki], [http://www.itemis.de itemis]
+
#[http://www.xing.com/profile/Oliver_Libutzki Oliver Libutzki], [http://www.itemis.de itemis]  
#[http://www.lemmster.de Markus Alexander Kuppe], [http://eclipse.org/ecf ECF]
+
#[http://www.lemmster.de Markus Alexander Kuppe], [http://eclipse.org/ecf ECF]  
#[http://www.xing.com/profile/Oliver_Ochs Oliver Ochs], [http://blog.holisticon.de Holisticon AG]
+
#[http://www.xing.com/profile/Oliver_Ochs Oliver Ochs], [http://blog.holisticon.de Holisticon AG]  
#[https://www.xing.com/profile/christian_hager11 Christian Hager], [http://www.tecis.de tecis Finanzdienstleistungen AG]
+
#[https://www.xing.com/profile/christian_hager11 Christian Hager], [http://www.tecis.de tecis Finanzdienstleistungen AG]  
#[http://www.xing.com/profile/Sara_GomezNosti Sara Gomez Nosti], [http://www.plath.de PLATH GmbH]
+
#[http://www.xing.com/profile/Sara_GomezNosti Sara Gomez Nosti], [http://www.plath.de PLATH GmbH]  
#[http://www.xing.com/profile/Sven_vonPluto Sven von Pluto], [http://www.conceptpeople.de ConceptPeople consulting gmbh]
+
#Gabriele Heimann, [http://www.akquinet.de akquinet engineering gmbh]  
#Gabriele Heimann, [http://www.akquinet.de akquinet engineering gmbh]
+
#[https://www.xing.com/profile/Christian_RatajWeinreben Christian Rataj-Weinreben], [http://www.smow.de labelfarm GmbH (smow.de)]
#[https://www.xing.com/profile/Christian_RatajWeinreben Christian Rataj-Weinreben], [http://www.suzlon.com Suzlon Energy]
+
#[https://www.xing.com/profile/Maik_Teske Maik Teske], [http://www.suzlon.com Suzlon Energy]  
#[https://www.xing.com/profile/Maik_Teske Maik Teske], [http://www.suzlon.com Suzlon Energy]
+
#[https://www.xing.com/profile/Steffen_Dummann Steffen Dummann], [http://www.smow.de labelfarm GmbH (smow.de)]
#[https://www.xing.com/profile/Steffen_Dummann Steffen Dummann], [http://www.suzlon.com Suzlon Energy]
+
#[https://twitter.com/#!/MarcelBruch Marcel Bruch], [http://eclipse.org/recommenders/ Eclipse Code Recommenders]  
#[https://twitter.com/#!/MarcelBruch Marcel Bruch], [http://eclipse.org/recommenders/ Eclipse Code Recommenders]
+
#[http://zarnekow.blogspot.com Sebastian Zarnekow], itemis  
#[http://zarnekow.blogspot.com Sebastian Zarnekow], itemis
+
#[https://www.xing.com/profile/Andreas_Lenz6 Andreas Lenz], [http://www.dv-ratio.com/ DV-RATIO Group]  
#[https://www.xing.com/profile/Andreas_Lenz6 Andreas Lenz], [http://www.dv-ratio.com/ DV-RATIO Group]
+
#Frank Schlüter, Techniker Krankenkasse  
#Frank Schlüter, Techniker Krankenkasse
+
#Jan Koops, Techniker Krankenkasse  
#Jan Koops, Techniker Krankenkasse
+
#Nils Hartmann, Techniker Krankenkasse  
#Nils Hartmann, Techniker Krankenkasse
+
#[https://www.xing.com/profile/Christian_Hempe Christian Hempe], [http://www.consist.de Consist Software Solutions]  
#[https://www.xing.com/profile/Christian_Hempe Christian Hempe], [http://www.consist.de Consist Software Solutions]
+
#[https://www.xing.com/profile/Asaf_Ikram Asaf Ikram], [http://www.itemis.de itemis]  
#[https://www.xing.com/profile/Asaf_Ikram Asaf Ikram], [http://www.itemis.de itemis]
+
#Erdal Karaca  
#Erdal Karaca
+
#[https://www.xing.com/profile/Holger_Schill2 Holger Schill], [http://www.itemis.de itemis]  
#[https://www.xing.com/profile/Holger_Schill2 Holger Schill], [http://www.itemis.de itemis]
+
#[http://www.gunnarmorling.de/ Gunnar Morling]  
#[http://www.gunnarmorling.de/ Gunnar Morling]
+
#Felix Heppner, [http://www.plath.de PLATH GmbH]  
#Felix Heppner, [http://www.plath.de PLATH GmbH]
+
#Christoph Kulla, Bosch Car Multimedia  
# Christoph Kulla, Bosch Car Multimedia
+
#Frank Gerhardt, [http://gerhardtinformatics.com Gerhardt Informatics Kft.]  
# Frank Gerhardt, [http://gerhardtinformatics.com Gerhardt Informatics Kft.]
+
#Ingo Meyer  
# Ingo Meyer
+
#Gregor Pardon, Sartorius Mechatronics T&H GmbH
#Nils Buhrke, [http://www.bmiag.de b+m Informatik AG]
+
#Ralph Müller, Eclipse Foundation  
#Gregor Pardon
+
#[https://plus.google.com/u/0/107316807994895176615 Oliver Zeigermann]  
#Ralph Müller, Eclipse Foundation
+
#Roger Gilliar, [http://www.mcs.de MCS Moorbek Computer Systeme GmbH]
#[https://plus.google.com/u/0/107316807994895176615 Oliver Zeigermann]
+
#[http://blog.alichs.de Pascal Alich], [http://www.zuehlke.com/ Zühlke Engineering]  
#Roger Gilliar
+
#Harald Albers, [http://www.hamburger-software.de HS - Hamburger Software]  
#[http://blog.alichs.de Pascal Alich], [http://www.zuehlke.com/ Zühlke Engineering]
+
#Marcus Tiedemann, [http://www.plath.de PLATH GmbH]  
#Harald Albers, [http://www.hamburger-software.de HS - Hamburger Software]
+
#[http://www.xing.com/profile/Rabea_Gransberger Rabea Gransberger], [http://www.meko-s.de MEKO-S GmbH]  
#Marcus Tiedemann, [http://www.plath.de PLATH GmbH]
+
#[https://www.xing.com/profile/Andreas_Breuer2 Andreas Breuer], [http://www.itemis.de itemis]  
#[http://www.xing.com/profile/Rabea_Gransberger Rabea Gransberger], [http://www.meko-s.de MEKO-S GmbH]
+
#Thomas App, HHLA  
#[https://www.xing.com/profile/Andreas_Breuer2 Andreas Breuer], [http://www.itemis.de itemis]
+
#Florian Laabs, HHLA  
#Thomas App, HHLA
+
#Henrik Schmidt  
#Florian Laabs, HHLA
+
#[https://www.xing.com/profile/Sascha_vonBodenhausen Sascha Frhr. v. Bodenhausen], [http://www.meko-s.de MEKO-S GmbH]  
#Henrik Schmidt
+
#Philipp Hülsebusch, Techniker Krankenkasse  
#[https://www.xing.com/profile/Sascha_vonBodenhausen Sascha Frhr. v. Bodenhausen], [http://www.meko-s.de MEKO-S GmbH]
+
#Sönke Rumohr, Techniker Krankenkasse  
#Philipp Hülsebusch, Techniker Krankenkasse
+
#André Gode, MACH AG
#Sönke Rumohr, Techniker Krankenkasse
+
#Peter Schmidt, [http://www.comdirect.de comdirect bank AG]
 +
#Frank Becker
 +
#Heiko Neuweger, [http://www.bdal.com Bruker Daltonics]
 +
#Christian Tabeling, [http://www.bdal.com Bruker Daltonics]
 +
#Alexander Rüegg, [http://www.bdal.com Bruker Daltonics]
 +
#Alexander Bunkowski, [http://www.bdal.com Bruker Daltonics]
 +
#Erland Müller, [http://www.desy.de DESY]
 +
#Dennis Hübner, [http://www.itemis.de Itemis]
 +
#Oliver Niekrenz, EliteMedianet GmbH
 +
#Stefan Zeug, [http://www.bmiag.de b+m Informatik AG]
 +
#Gregor Hennings, [http://www.bmiag.de b+m Informatik AG]
 +
#Mathias Bietz, [http://www.suzlon.com Suzlon Energy GmbH]
 +
#Holger Wolf, [http://www.meko-s.de MEKO-S GmbH]
 +
#Holger Wolf, [http://www.meko-s.de MEKO-S GmbH]
 +
#Romwell Vardeleon, Sartorius Mechatronics Philippines Inc.
 +
#Krizell Matel, Sartorius Mechatronics Philippines Inc.
 +
#Mark del Valle, Sartorius Mechatronics Philippines Inc.
 +
#Melody King, Sartorius Mechatronics Philippines Inc.
 +
#[http://www.wickedshell.net/blog Stefan Reichert], [http://www.zuehlke.com/ Zühlke Engineering]
 +
#[http://www.xing.com/profile/Hayo_Schmidt Hayo Schmidt], [http://www.logica.de Logica]
 +
#[https://www.xing.com/profile/Josef_Fruehwirth3 Josef Frühwirth]
 +
#Jing Ge
 +
#Andre Müller
 +
#Tobias Friedrich
 +
#Axel Scheithauer, oose Innovative Informatik GmbH

Latest revision as of 11:39, 14 June 2012

Eclipse DemoCamp Old.jpg What is an Eclipse DemoCamp?

Location

HHLA, Bei St. Annen 1, 20457 Hamburg (Speicherstadt)

Eclipse-demo-camp-hamburg-06-2011-room.jpg Eclipse-demo-camp-hamburg-06-2011-building.jpg

Date and Time

June 14, 2012 18:00 - 23:00

Organizer

Peter Friese, Zühlke Engineering

Martin Lippert, SpringSource - a division of VMware

Sponsors

Following the principles of openness and transparency, we (Martin and Peter) decided to do the sponsoring for the next Eclipse Demo Camp in Hamburg slightly different.

This time sponsoring for the demo camp is totally open and transparent to everybody. We would like to invite everybody to participate in this sponsoring. The only thing you need to do in order to participate in this sponsoring is to add yourself (you as a person or the company that is sponsoring) to this section of the wiki page. Please add your name or company and the amount of money you would like to sponsor.

This is totally open. Everybody is invited to join the group of sponsors. Companies as well as individuals are invited to participate in this. And you decide for yourself on the total amount of money you would like to spend. The more money we get from YOU all, the more we can spend at the event for drinks and food. So please start today, convince your boss or spend your own money, and add you to the sponsoring list for the next Demo Camp in Hamburg.

The event will continue to be free for all participants (as it was in the past) and you don't need to sponsor just to participate.

One additional note: We will donate 20% of the sponsored food/drinks to an organisation that supports homeless people in Hamburg. So 20% of the ordered drinks/food will not be delivered to our demo camp, but directly to that organization at the same time. We did that once in the past when we ordered more stuff that we could eat and we thought we should do this again, but this time by purpose.

  1. Zühlke Engineering - 500 EUR
  2. itemis AG - 500 EUR
  3. SpringSource/VMware, Inc. - 500 EUR
  4. BundleMaker Development Team - 50 EUR

Agenda

  • 18.00: Get together
  • 18.30: Opening/Welcome
  • 18.40 - 19.00: Eclipse Code Recommenders (Marcel Bruch)
  • 19:05 - 19:25: BundleMaker - analyze and restructure your application (Gerd Wütherich, Nils Hartmann)
  • 19:30 - 19.50: JaMoPP - a Open-Source-Tool for Analyzing and Modernizing Software (Jendrik Johannes)

break

  • 20:20 - 20:40: Release engineering with Tycho and P2 (Matthias Köster)
  • 20:45 - 21:05: GEFGWT: GEF in JavaScript, in the browser, on the iPad (Frank Gerhardt)
  • 21:10 - 21:30: Building native mobile clients with RAP (Johannes Eickhold)

break

  • 21:45 - 22:05: Xtend - A Coffeescript for Java (Jan Köhnlein)
  • 22:10 - 22:30: Type-safe DSLs, using Xtext/TS, Groovy and other languages (Werner Keil)

Details

Xtend is a statically-typed, functional and object-oriented programming language which is translated directly to comprehensible Java source code. The language is developed at Eclipse.org and reuses Java's syntax, terminology and concepts as much as possible, but abandons some dead freight at the same time. Xtend is a very powerful alternative for implementing Java classes and works great with all the existing libraries. Since the language can be seen as a little complementary add-on to Java, it offers many modern language features, reaching from type inference over lambdas and extension methods up to smart string interpolation that make development great fun, again. And of course there is powerful Eclipse IDE integration available.
In this session I will demonstrate why Xtend is so great for everyday programming. You will get an in-depth impression of the seamless integration with the Eclipse Java IDE and you'll get an impression of the expressiveness and conciseness of Xtend.
As a perfect follow-up to Xtend, this session is going to present Xtext/TS, a type system framework for Xtext. Groovy founder Guillaume Laforge built on top of the Java standard proposal for type safe Units of Measurements, JSR-275 with his case study of a Domain-Specific Language for unit manipulations some while ago.
Based on Unit-API the successor to JSR-275, and its leading Open Source implementation Eclipse UOMo together with Xtext/TS we'll see, how a similar DSL for unit manipulations could be created with Xtext.
Java code makes up a large part of most enterprise systems. To keep these systems maintainable, extendable and flexible in the long run, constant checking of the consistency of code and other artefacts is necessary. Coding guidelines need to be followed, anti-patterns need to be avoided and interfaces need to be used correctly.
JaMoPP addresses theses challenges. JaMoPP automatically converts your Java code base into an EMF model. This model can be processed by a large number of tools based on EMF (e.g. Xtend). Additionally, the model can be linked with any other artefact that is represented as an EMF model. On the base of this integrated model, individual guidlines for your software can be defined. This way, structural problems are recognised instantly and, if required, repaired automatically.
More and more eclipse projects are starting to use Tycho for building their project. We were early adopters of tycho and are using it successfully for more than a year. We had some problems getting it to work at the beginning, but today we are using it to release our product and publish it as P2 update site. We developed our own maven plugin to create native installers (msi, dmg). I want to share our experiences using Tycho to build and release our eclipse based IDE with you..
Application frameworks have become an integral part of today's software development - this is hardly surprising given their promised benefits such as reduced costs, higher quality, and shorter time to market. But using an application framework is not free of cost. Before frameworks can be used efficiently, software developers have to learn their correct usage which often results in high initial training costs.
However, framework usages frequently follow typical patterns that manifest themselves in source code of applications that use these frameworks - and thus can be extracted from code and directly reused to guide novice developers when learning these frameworks. The Eclipse Code Recommenders project facilitates this reuse of collective knowledge by automatically collecting such information from code and brings back this knowledge into the IDE by means of intelligent code completion, extended (usage-driven) javadocs, and many things more.
This demo introduces you to Eclipse Code Recommenders. It will demonstrate how you can leverage the collective knowledge of your team mates to improve your own productivity with no effort.
BundleMaker is an open-source tool to analyze and modularize existing Java-based applications. With BundleMaker you can analyze and visualize the structure and dependencies of your Java application. Based on your analysis you can define various transformations to restructure your system according to your new modularized target architecture. BundleMaker is able to export the whole restructured system into several output formats such as OSGi binary bundles or projects for the Eclipse PDE development tools.
Developed as an OSGi/Eclipse-based application itself, BundleMaker is highly customizable to make it a perfect match for a variety of usage scenarios.
RAP, the Rich Ajax Platform is known as a framework for Eclipse-based web applications, that uses HTML and JavaScript to render SWT-based user interfaces. But with its new JSON-based communication protocol, it is not restricted to browser clients anymore. Alternative RAP clients can now be implemented for any network-enabled device that can process JSON and display widgets. At EclipseSource, we're developing RAP clients for iOS and Android that use the native widgets of the device.
In this talk, I'll explain the new protocol and show some example applications running natively on an iPad and my Andriod phone.
  • GEFGWT: GEF in JavaScript, in the browser, on the iPad (Frank Gerhardt GEF is one of the oldest Eclipse projects. When migrating of a good old RCP application to the Web or Mobile, the graphical editors are usually very hard to port or to rewrite. We ported GEF to JavaScript using GWT. That way you can reuse most of the Java code and compile your GEF editors to JavaScript. We also made a few extensions to support touch events on mobile devices. I will give you a demo of GEFGWT and explain how to use it.

Who Is Attending

If you plan on attending please add your name and company to the list below. You need to have an Eclipse Bugzilla account to do so. Signing up is really easy and not only gives you the chance to attend Eclipse DemoCamps, but also gives you the sweet fuzzy feeling of being able to file Eclipse bugs! Come on, give it a try - we know you can do it!

  1. Peter Friese, Zühlke Engineering
  2. Martin Lippert, SpringSource - a division of vmware
  3. Sven Efftinge, itemis
  4. Jan Köhnlein, itemis
  5. Werner Keil, Creative Arts & Technologies
  6. Jan Ortmann, Mondula
  7. Daniel Dietrich, HSH Nordbank
  8. Philip Wenig, OpenChrom
  9. Jendrik Johannes, DevBoost GmbH
  10. Matthias Köster, NumberFour AG
  11. Frank Gasdorf, PLATH GmbH
  12. Oliver Libutzki, itemis
  13. Markus Alexander Kuppe, ECF
  14. Oliver Ochs, Holisticon AG
  15. Christian Hager, tecis Finanzdienstleistungen AG
  16. Sara Gomez Nosti, PLATH GmbH
  17. Gabriele Heimann, akquinet engineering gmbh
  18. Christian Rataj-Weinreben, labelfarm GmbH (smow.de)
  19. Maik Teske, Suzlon Energy
  20. Steffen Dummann, labelfarm GmbH (smow.de)
  21. Marcel Bruch, Eclipse Code Recommenders
  22. Sebastian Zarnekow, itemis
  23. Andreas Lenz, DV-RATIO Group
  24. Frank Schlüter, Techniker Krankenkasse
  25. Jan Koops, Techniker Krankenkasse
  26. Nils Hartmann, Techniker Krankenkasse
  27. Christian Hempe, Consist Software Solutions
  28. Asaf Ikram, itemis
  29. Erdal Karaca
  30. Holger Schill, itemis
  31. Gunnar Morling
  32. Felix Heppner, PLATH GmbH
  33. Christoph Kulla, Bosch Car Multimedia
  34. Frank Gerhardt, Gerhardt Informatics Kft.
  35. Ingo Meyer
  36. Gregor Pardon, Sartorius Mechatronics T&H GmbH
  37. Ralph Müller, Eclipse Foundation
  38. Oliver Zeigermann
  39. Roger Gilliar, MCS Moorbek Computer Systeme GmbH
  40. Pascal Alich, Zühlke Engineering
  41. Harald Albers, HS - Hamburger Software
  42. Marcus Tiedemann, PLATH GmbH
  43. Rabea Gransberger, MEKO-S GmbH
  44. Andreas Breuer, itemis
  45. Thomas App, HHLA
  46. Florian Laabs, HHLA
  47. Henrik Schmidt
  48. Sascha Frhr. v. Bodenhausen, MEKO-S GmbH
  49. Philipp Hülsebusch, Techniker Krankenkasse
  50. Sönke Rumohr, Techniker Krankenkasse
  51. André Gode, MACH AG
  52. Peter Schmidt, comdirect bank AG
  53. Frank Becker
  54. Heiko Neuweger, Bruker Daltonics
  55. Christian Tabeling, Bruker Daltonics
  56. Alexander Rüegg, Bruker Daltonics
  57. Alexander Bunkowski, Bruker Daltonics
  58. Erland Müller, DESY
  59. Dennis Hübner, Itemis
  60. Oliver Niekrenz, EliteMedianet GmbH
  61. Stefan Zeug, b+m Informatik AG
  62. Gregor Hennings, b+m Informatik AG
  63. Mathias Bietz, Suzlon Energy GmbH
  64. Holger Wolf, MEKO-S GmbH
  65. Holger Wolf, MEKO-S GmbH
  66. Romwell Vardeleon, Sartorius Mechatronics Philippines Inc.
  67. Krizell Matel, Sartorius Mechatronics Philippines Inc.
  68. Mark del Valle, Sartorius Mechatronics Philippines Inc.
  69. Melody King, Sartorius Mechatronics Philippines Inc.
  70. Stefan Reichert, Zühlke Engineering
  71. Hayo Schmidt, Logica
  72. Josef Frühwirth
  73. Jing Ge
  74. Andre Müller
  75. Tobias Friedrich
  76. Axel Scheithauer, oose Innovative Informatik GmbH

Copyright © Eclipse Foundation, Inc. All Rights Reserved.