Creating the ErrorPage throws an error and ErrorPlace.java turned out empty (the annotation). Had to fill that file manually to follow your example and end up with a running app.
Thank you. I struggled with GWTP some time ago. But this plugin makes it now very easy to use. If you got some time I would love to see other tutorials about GWTP's features!
@BindingAnnotation
@Target({ FIELD, PARAMETER, METHOD })
@Retention(RUNTIME)
public @interface ErrorPlace {
}
genomega 4 months ago
If ErrorPlace.java is empty, add the following:
import com.google.inject.BindingAnnotation;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
see next post:
genomega 4 months ago
Creating the ErrorPage throws an error and ErrorPlace.java turned out empty (the annotation). Had to fill that file manually to follow your example and end up with a running app.
MrPhilippSeeger 4 months ago
I get a nullpointerexception when I try to create the WelcomePresenter any ideas what this could be?
DotsC 4 months ago
@DotsC The same. But i get this when trying to create ErrorPresenter.
MrZw0rk 4 months ago
Hi, please, can you show us the next demo with nested presenters ? Tkx a lot.
nzaeroax 6 months ago
Very very good plugin ! Thanks a lot ! When will be plugin for Eclipse 3.7 ?
konstantinzolotarev 6 months ago
Great Tutorial! Can't wait for the next installment. Thanks a Lot!
Spundun 6 months ago
Cool indeed!
mmonstei 7 months ago
Thank you. I struggled with GWTP some time ago. But this plugin makes it now very easy to use. If you got some time I would love to see other tutorials about GWTP's features!
rauschpixel 7 months ago
Thank you for this! And I am waiting for the next too!
SchoolThem 7 months ago
THis is perfect!!!!!! thanks alot... Cant wait for the next one!!!!
pkatpadi 7 months ago
Thanks Phil! Looking forward to the next one :)
argothiusz 8 months ago
Thank you Phil works like a charm.
sblommers 8 months ago