Why the GWT team decided to name the interface for a view Display?

2011-09-19 Thread Behi
Why the GWT team decided to name the interface for a view Display? IMHO View would be a better choice. This would turn the Contact example into something like this: public class ContactsPresenter implements Presenter { public interface View { // methods } } public class ContactsView

Re: Why the GWT team decided to name the interface for a view Display?

2011-09-19 Thread Renato Beserra
I have the same opinion and I would also like to know if there is a motive for the name Display. 2011/9/19 Behi behran...@gmail.com Why the GWT team decided to name the interface for a view Display? IMHO View would be a better choice. This would turn the Contact example into something like