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 Techs For GWT"

(Project Organization)
(Project Organization)
 
(3 intermediate revisions by the same user not shown)
Line 33: Line 33:
 
== Project Organization ==
 
== Project Organization ==
  
All the work done is part of the eclipse-incubator
+
All the work done is part of the platform-incubator. You'll find the projects in [http://dev.eclipse.org/viewcvs/index.cgi/platform-incubator/ui/other/experimental/gwt/ cvs]. The projects are Standard-Java-Projects and not OSGI-Plugins.
 +
 
 +
The projects provide normally the following things:
 +
* reimplementations for classes specific to GWT found in folder <code>src</code>
 +
* a set of patches to original sources found in <code>patches</code>
 +
* <code>build.xml</code>
 +
** fetch sources from CVS
 +
** applying patches
 +
** build-deliverables
 +
* Bugs are tracked in Bugzilla, with a prefix of [GWT]:
 +
** [https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=%5BGWT%5D&classification=Eclipse&product=Platform&component=Incubator&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0= Open Issues]
 +
** [https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=%5BGWT%5D&classification=Eclipse&product=Platform&component=Incubator&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0= All Issues]
 +
 
 +
== Package informations ==
 +
 
 +
* [http://wiki.eclipse.org/Eclipse_Techs_For_GWT/Databinding org.eclipse.core.databinding]

Latest revision as of 15:33, 23 October 2007

Disclaimer

This is not part of the Official Databinding Effort lead by the Platform/UI-Team nor a project of the Eclipse-Team. The work done here is fairly experimental! It is a research project happening in the platform-incubator and at the current stage no deliverables, ... are planned.

What is Eclipse Techs for GWT

The target of Eclipse Techs for GWT is to make Eclipse Core technologies usable in GWT-Applications. Because GWT provides a very restrictive environment many Eclipse project do not compile with GWT out of the box.

Eclipse plugins targeted

The following plugins are the first target of our work where we are going to maintain a set of patches:

  • org.eclipse.core.runtime and org.eclipse.equinox.common (only the parts needed by projects)
  • org.eclipse.core.databinding
  • org.eclipse.core.emf.common and org.eclipse.core.emf.ecore

For the following plugins reimplementations with the same API are planned:

  • org.eclipse.jface (only viewers and some of the window-classes like ApplicationWindow)
  • org.eclipse.ui (ViewPart, Perspectives, ...)

You'll notice that SWT is not part of the porting effort currently because the amount of work needed to do so is too big. We have thought about different solutions to the problem e.g. provide an high-level API which works ontop of SWT and GWT but no final decision has been made

Setup instructions for devs

Set up GWT

The current port is targeted for GWT-1.5 which is not available currently so you have to fetch the sources from SVN and compile your own. The process of doing this is quite simple when you follow the instructions provided here.

Set up Eclipse

If you have GWT installed the next thing is to setup a variable named "GWT_USER" under "Preferences > Java > Build Path > Classpath Variables" pointing to your gwt-user.jar.

Project Organization

All the work done is part of the platform-incubator. You'll find the projects in cvs. The projects are Standard-Java-Projects and not OSGI-Plugins.

The projects provide normally the following things:

  • reimplementations for classes specific to GWT found in folder src
  • a set of patches to original sources found in patches
  • build.xml
    • fetch sources from CVS
    • applying patches
    • build-deliverables
  • Bugs are tracked in Bugzilla, with a prefix of [GWT]:

Package informations

Back to the top