Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [soc-dev] [The Eclipse Foundation] New proposal by Hendrik Still: Eclipse Platform: Implementing generic in JFace viewers

Hello Lars,

i always get that message when im either not logged in or logged in with a different google account. 

Try to log in again, hopefully that will help. :)

(actually, i just tried your link, got the same message, then re-logged-in and it worked)

Kind Regards,
Jelena Alter

Coordinator, Ecosystem Europe
Eclipse Foundation
Mobile: +49 160 90253202



Am 30.04.2013 um 16:40 schrieb Lars Vogel <lars.vogel@xxxxxxxxx>:

Hi,

I wanted to remove the suggestion below but I got the following error message:


This proposal is not made public, and you are not the student who submitted the proposal, nor are you a mentor for the organization it was submitted to.

Does this mean something is wrong with my user or with the propsal?

Best regards, Lars

---------- Forwarded message ----------
From: <no-reply@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
Date: 2013/4/27
Subject: [The Eclipse Foundation] New proposal by Hendrik Still: Eclipse Platform: Implementing generic in JFace viewers
To: Lars.Vogel@xxxxxxxxx


Hi,


Hendrik Still has submitted a new proposal to named Eclipse Platform: Implementing generic in JFace viewers at http://www.google-melange.com/gsoc/proposal/review/google/gsoc2013/hendrik_still/1:



Abstract


Currently the JFace UI Toolkit still supports language features of Java 1.4. With moving JFace to the language features of Java 1.5 it would be able to take use of Java generics. I would implement the generics feature for the viewers part of the JFace Toolkit. This could help the users of JFace to avoid casting of data objects and detect more type failures at compile-time.

Detailed Information

 

This proposal is based on the Feature Request/Bug no. 402445(“Add generics to the JFace Viewer framework”) for the JFace Toolkit. As mentioned in the abstract I would like to implement the generics language feature of Java 1.5 to the viewers of the UI Toolkit. From these changes the users will benefit from the stronger typing of objects as result of the use of generics. The Eclipse community will benefit because JFace is part of this community. A very important issue for this change of the JFace API would be the backwards compatibility to the current API, to provide a fast integration into the next Eclipse Versions.

Background

 

In the leading up I will do the following tasks to be well prepared for starting as fast I can into the coding phase.
1.Develop small demos to use the most of the JFace viewers

2.Study the  committer guidelines of the Eclipse Project
3.Fix a small bug to understand the development process

Deliverables:

 

The goal would be to offer an API, that allows the user to access JFace in the following way:

 
 
 
TableViewerColumn<Person> col = new TableViewerColumn<Person>(viewer, SWT.NONE);
col.getColumn().setWidth(200);
col.getColumn().setText("Firstname:");
col.setLabelProvider(new ColumnLabelProvider<Person>() {
  @Override
  public String getText(Person element) {
    //Person p = (Person) element; This line should not be required
    return element.getFirstName();
  }
});

The changes of the API would also require changes of the Unittests (including backwards compatibil tests) and changes of the API Documentation.

Schedule:
1. Implement one example viewer with generics
2. Update the other Viewers
3. Update the Viewer Test
4. Update current API Documentation

5. (If there is still enough time) Port of some parts of the Eclipse 4 infrastructure to the new API


Expectations

 

Currently I'm not a “Eclipse Pro” but I've some experience with RCP and OSGi development, so the plug-in development should not be a big deal.

 

I think the hardest part part for me will be the committer process of the Eclipse community. It would be nice to be supported at the first steps in this process. I would also expect frequent reviews of my code, so that I know the code that will be committed corresponds to the coding guidelines and is still compatible with the rest of the Eclipse plattform.

 


Contact

 

At the moment I'm studying Computer Science in my third year in
Karlsruhe (Germany). Before I have started studying, I gained a degree as
IT specialist for application development. As part of my work as a
software developer and student I'm using Eclipse JDT, PDT, CDT etc.  daily.

if you have any further questions you can write an email. My email address is hendrik.still@xxxxxxxxx.

 
 
 
 


Greetings,
The Google Open Source Programs Team

---

You are receiving this message because you are participating in Google Summer of Code 2013.
To stop receiving these messages, go to: http://www.google-melange.com/gsoc/profile/google/gsoc2013.


_______________________________________________
soc-dev mailing list
soc-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/soc-dev


Back to the top