Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Scout » Multi-Module Applications
Multi-Module Applications [message #899050] Mon, 30 July 2012 11:07 Go to next message
Stefan Mutschler is currently offline Stefan MutschlerFriend
Messages: 26
Registered: June 2012
Location: Baden-Baden, Germany
Junior Member
Hi,

I personally like the concept of multi-module applications as described by Ivan Motsch in this forum. IDesktopExtension has come up in Juno release as promised. So, I believe it is ready for production. Is there a short introduction how to use it?

Thanks for your time...

Stefan
Re: Multi-Module Applications [message #899287 is a reply to message #899050] Tue, 31 July 2012 11:02 Go to previous messageGo to next message
Claudio Guglielmo is currently offline Claudio GuglielmoFriend
Messages: 256
Registered: March 2010
Senior Member
Hi Stefan

A desktop extension gives you the possibility to add or modify desktop operations like showing forms on startup, add additional desktop menus or outlines, modify forms before they are displayed, etc.

To use Desktop Extensions just override injectDesktopExtensions and add your extensions:

@Override
protected void injectDesktopExtensions(List<IDesktopExtension> desktopExtensions) {
  List<IDesktopExtension> extensions = loadYourExtensions();

  for (IDesktopExtension e : extensions) {
    e.setCoreDesktop(this);
  }

  desktopExtensions.addAll(extensions);
}


There are a lot more things to come which helps you to make your app modular. One thing is the InjectTo annotation which will already be shipped with the first service release (3.8.1) [1].
Additional support will follow with Kepler (3.9.0) [2].

---
[1] InjectTo Annotation
[2] Bug 384479
Re: Multi-Module Applications [message #899343 is a reply to message #899287] Tue, 31 July 2012 14:06 Go to previous message
Stefan Mutschler is currently offline Stefan MutschlerFriend
Messages: 26
Registered: June 2012
Location: Baden-Baden, Germany
Junior Member
Hi Claudio,

great! This is where I got stuck. Thanks for your answer.

Regards

Stefan
Re: Multi-Module Applications [message #899350 is a reply to message #899287] Tue, 31 July 2012 14:06 Go to previous message
Stefan Mutschler is currently offline Stefan MutschlerFriend
Messages: 26
Registered: June 2012
Location: Baden-Baden, Germany
Junior Member
Hi Claudio,

great! This is where I got stuck. Thanks for your answer.

Regards

Stefan
Previous Topic:File upload to server
Next Topic:password with salt
Goto Forum:
  


Current Time: Thu Apr 25 08:56:14 GMT 2024

Powered by FUDForum. Page generated in 0.03785 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top