I work at a company that uses GWT for most of their projects, and in working with Eclipse there, I have noticed that when I add a new method to a *Service
interface (eg, public Foo getFoo()
) that it would automatically create an async version of that method in the *ServiceAsync
Interface, and make an empty stub method in the *ServiceImpl
class. Now that I'm working on my own projects at home using Eclipse Luna and the Google Plugin for Eclipse, I notice that this behavior is not happening. Eclipse does seem to be able to notice that the Async interface is missing a given method, but when I hit ctrl-s, it's not automagically making the changes for me.
Is there a configuration option I'm missing to add this behavior?