Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Yet another GWT plug-in for Eclipse
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  11 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Gunnar Wagenknecht  
View profile  
 More options Aug 19 2006, 3:22 pm
From: "Gunnar Wagenknecht" <eclipseg...@gmail.com>
Date: Sat, 19 Aug 2006 12:22:51 -0700
Local: Sat, Aug 19 2006 3:22 pm
Subject: Yet another GWT plug-in for Eclipse
Hi!

If you use Eclipse you might want to checkout this:
http://wagenknecht.org/blog/archives/2006/08/yet-another-gwt-plug-in....

Nothing fancy yet but it's a start. ;)

Cu, Gunnar


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Slava  
View profile  
 More options Aug 21 2006, 9:24 am
From: "Slava" <sakhno.vyaches...@gmail.com>
Date: Mon, 21 Aug 2006 13:24:53 -0000
Local: Mon, Aug 21 2006 9:24 am
Subject: Re: Yet another GWT plug-in for Eclipse
Oh, gosh. It's a GWT virus. It deletes all inheritance keywords in GWT
services after execution.
Also i have problems trying to delete by hands service created by
wizard.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gunnar Wagenknecht  
View profile  
 More options Aug 21 2006, 9:42 am
From: "Gunnar Wagenknecht" <eclipseg...@gmail.com>
Date: Mon, 21 Aug 2006 06:42:09 -0700
Local: Mon, Aug 21 2006 9:42 am
Subject: Re: Yet another GWT plug-in for Eclipse
Hi!

Slava wrote:
> > Oh, gosh. It's a GWT virus. It deletes all inheritance keywords in GWT
> > services after execution.

Which keywords do you mean? In the *.gwt.xml file or in the service
interfaces?

> > Also i have problems trying to delete by hands service created by
> > wizard.

Do you mean the service interface? Do you get an exception?

You can report problems here:
http://code.google.com/p/gwt-tooling/

Cu, Gunnar


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Slava  
View profile  
 More options Aug 21 2006, 11:00 am
From: "Slava" <sakhno.vyaches...@gmail.com>
Date: Mon, 21 Aug 2006 15:00:27 -0000
Local: Mon, Aug 21 2006 11:00 am
Subject: Re: Yet another GWT plug-in for Eclipse
Hi. I have interface:

interface TreeDatasourceAsync extends DataSourceAsync {

}

after i enabled GWT support it became

interface TreeDatasourceAsync {

}

Also strange that your plugin don't deleted "extends SuperClass" string
in another GWT services interfaces, for example:

public interface MainServiceAsync extends FixedSizeListDatasourceAsync,
PropertiesDatasourceAsync{

}

remained the same after plugin activation.

After that i've tried to create service with your service creation
wizard. I didn't like that it creates services in the client package of
GWT  module(although i was creating service in /client/services package
of my GWT module). So i didn't like that and selected all 3 generated
files and pressed delete button. MyServiceAsync file was deleted but it
was still displayed in PackageExplorer. I was need to restart eclipse
for that file to vanish.

I am using Callisto eclipse 3.2 and I'm afraid of your plugin now =)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gunnar Wagenknecht  
View profile  
 More options Aug 21 2006, 11:32 am
From: "Gunnar Wagenknecht" <eclipseg...@gmail.com>
Date: Mon, 21 Aug 2006 08:32:36 -0700
Local: Mon, Aug 21 2006 11:32 am
Subject: Re: Yet another GWT plug-in for Eclipse
Hi!

Slava schrieb:

> interface TreeDatasourceAsync extends DataSourceAsync {
> }

> after i enabled GWT support it became

> interface TreeDatasourceAsync {
> }

Ah ok. I wasn't aware that inheritance is support in remote service
async implementations that are generated by GWT.

Filled http://code.google.com/p/gwt-tooling/issues/detail?id=2.

> Also strange that your plugin don't deleted "extends SuperClass" string
> in another GWT services interfaces, for example:

That's probably because the builder didn't run. You can disabled it
anyway if you don't like the automated generation of the async
interface stubs.

> After that i've tried to create service with your service creation
> wizard. I didn't like that it creates services in the client package of
> GWT  module(although i was creating service in /client/services package
> of my GWT module). So i didn't like that and selected all 3 generated
> files and pressed delete button. MyServiceAsync file was deleted but it
> was still displayed in PackageExplorer. I was need to restart eclipse
> for that file to vanish.

Mhm. That wizard was enhanced by me but still comes from the Googlipse
background.

Filled as:
http://code.google.com/p/gwt-tooling/issues/detail?id=4
http://code.google.com/p/gwt-tooling/issues/detail?id=3

> I am using Callisto eclipse 3.2 and I'm afraid of your plugin now =)

As long as you aren't scared. ;) No don't worry, that's why I provided
the context menu actions to activate and deactivate it easily. But
thanks for your input! That's what I was looking for. Right now, it
pretty much only handles my workflow and implements my ideas but that's
not what a tool should be about. :)

Cu, Gunnar


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Slava  
View profile  
 More options Aug 21 2006, 12:15 pm
From: "Slava" <sakhno.vyaches...@gmail.com>
Date: Mon, 21 Aug 2006 16:15:49 -0000
Local: Mon, Aug 21 2006 12:15 pm
Subject: Re: Yet another GWT plug-in for Eclipse
Okay, one more idea. I am using common datasource GWT service  , other
datasources inherit that one and that interface is used in diffirent
modules, so it is not a good idea to hardcode servlet url to interface
and use it in static class Util, although it is a good idea to create
Util class with getInstance(String) method.

I wrote eclipse template for doing that.

public static class Util {
        public static ${service}Async getInstance(String url) {
            ${service}Async service = (${service}Async) GWT
                    .create(${service}.class);
            ((ServiceDefTarget) service)
                    .setServiceEntryPoint(GWT.getModuleBaseURL() +
url);
            return service;
        }
    }

i think must be a simple way to create common RemoteService interface
without hardcoded url and without Util class.
And must be a simple way to create service with url and Util.

for example

interface FirstDataSource extends RemoteService {
 .....

}

interface SecondDataSource extends RemoteService {
 .....

}

interface MyPageService extends FirstDataSource, SecondDataSource {
  public static url="";

  public static class Util...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Burnette  
View profile  
 More options Aug 27 2006, 9:40 pm
From: "Ed Burnette" <ed.burne...@gmail.com>
Date: Mon, 28 Aug 2006 01:40:33 -0000
Local: Sun, Aug 27 2006 9:40 pm
Subject: Re: Yet another GWT plug-in for Eclipse
GWT-Tooling is now listed as the 116th contribution to
www.gwtpowered.org .

--Ed
http://www.pragmaticprogrammer.com/titles/ebgwt/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
claude  
View profile  
 More options Aug 28 2006, 11:15 am
From: "claude" <claude.e.dug...@gmail.com>
Date: Mon, 28 Aug 2006 15:15:02 -0000
Local: Mon, Aug 28 2006 11:15 am
Subject: Re: Yet another GWT plug-in for Eclipse
Ed, I bought your book and enyoyed reading it from end-to-end over the
weekend.

These message insertions you like to do are a little too frequent,
however, and I was hoping that you could balance your zeal for
self-promotion with the need to avoid spam, perphaps these postings
could be collected together in small, occasional (weekly?)
announcements rather than inlining each thread.

Here's a quote you can use to promote the book (I used to write book
reviews for Fawcette Publications/DevX, etc;-): "Ed's book is lucid,
easy to read and provides insights that are not available in the GWT
documentation. His writing is casual but direct and the book is ideal
for getting new users up to speed with GTW, a welcome addition to a
growing, vibrant community."

On a personal note, I would have liked something more meaty but that'll
have to wait since the community is still nascent and the kind of guide
you published is more likely to expand the developer base, which is
more important at this stage. In any case, I enjoyed the book and
wanted to support your efforts, so I bought the PDF and read it
immediately.

Keep up the good work.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Burnette  
View profile  
 More options Aug 29 2006, 9:43 am
From: "Ed Burnette" <ed.burne...@gmail.com>
Date: Tue, 29 Aug 2006 13:43:00 -0000
Subject: Re: Yet another GWT plug-in for Eclipse
Thanks Claude, and please excuse my enthusiasm about GWT. I'll try to
keep it in check a bit. :)

By the way, http://www.gwtpowered.org isn't really associated with my
book. It started out that way but over time I came to realize that a)
the community really needed an independent resource site, and b) people
who I wanted to help out with the database are working on their own
books. Therefore, I've removed any special references to my GWT book
from the site.

--Ed
http://blogs.zdnet.com/Burnette


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
claude  
View profile  
 More options Aug 29 2006, 10:46 am
From: "claude" <claude.e.dug...@gmail.com>
Date: Tue, 29 Aug 2006 14:46:03 -0000
Local: Tues, Aug 29 2006 10:46 am
Subject: Re: Yet another GWT plug-in for Eclipse
I don't think you need to remove references to the book from your own
site (community or not). I was reacting to seeing 4 emails in a row
that pushed the book. In forums or email, it feels like spam when this
happens. An occasional announcement seems reasonable.

I visit http://www.gwtpowered.org on occasion to check on the latest
releases and I think it's perfectly appropriate for an author to be
highlighting his own work there. The book and site are complimentary I
think.

By way of (positive) usuability feeddback for the site: I find nested
views of the sites being pointed to less friendly than spawning
windows. JSFCentral does this too and while it's less intrusive it
seems less than ideal. I think a directory in tab views makes sense,
but the moment you want to look at the site a link points to, the use
of an iframe feels constrained.

Nice work in any case. Sorry about giving you a hard time. I was just
being cranky ;-)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ed Burnette  
View profile  
 More options Aug 31 2006, 9:09 pm
From: "Ed Burnette" <ed.burne...@gmail.com>
Date: Fri, 01 Sep 2006 01:09:25 -0000
Local: Thurs, Aug 31 2006 9:09 pm
Subject: Re: Yet another GWT plug-in for Eclipse
No problem; I normally just read the group digest once a day so that's
why you saw several messages in a row.

I'd like to replace the frames with something more GWT-y but just
haven't had the time. There are feeds available in a variety of
formats, including JSON, if anyone wants to play with it:

Recent changes (widgets + resources ordered by date):
http://gwtpowered.dabbledb.com/publish/gwtwidgetlist/4a17dd9c-ee28-4f...

Resources:
http://gwtpowered.dabbledb.com/publish/gwtwidgetlist/a51f0f0a-d9d9-47...

Widgets:
http://gwtpowered.dabbledb.com/publish/gwtwidgetlist/2ddeb373-1746-46...

These urls might change. If you need a different view let me know.

--Ed
http://www.gwtpowered.org


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »