Harald Pehl
Harald Pehl
Provide a MVP implementation for fritz2. Most mature SPAs benefit from some kind of MVP implementation. By MVP implementation I mean a concept to separate business logic (presenter) from UI...
What steps will reproduce the problem? 1. When trying to use the new GWT 2.5 RC1 super devmode the compiler shows the following error: ``` Linking modules Bootstrap link for...
I’m hoping to serialize a list of objects to XML using polymorphic references. My setup seems to work successfully in GWT dev mode, however I run into compile time errors...
I'm using piriti for XML mapping in GWT application. I have not found the ability to map XML value. For example for this class: ``` java public class Option {...
What steps will reproduce the problem? 1. Create a BaseModel. It has a 'String modelType' property which represents the class name to be created when response comes back. 2. Create...
What steps will reproduce the problem? I added the maven-dependencies as shown in the wiki, added the json-inherits to gwt.xml ( name.pehl.piriti.json.JSON ) and received this error at startup: Loading...
What steps will reproduce the problem? 1. create class Holder with JsonWriter 2. create abstract class Property 3. create class PropertyInteger with JsonWriter 4. set holder.property to a value of...
What steps will reproduce the problem? 1. I declare an Xmlreader for the class Obj this way: ``` java @Mappings({ @Mapping( value="display", path="@display"), @Mapping( value="displayName", path="@displayName"), @Mapping( value="href", path="@href", convert=...
What steps will reproduce the problem? 1. Create a POJO marked-up as such: ``` java public class SomeClass { @Path("field") public String text; @Path("field/@name") public String name; } ``` 1....