diff --git a/README.md b/README.md index 2b343e9..2f6ed39 100644 --- a/README.md +++ b/README.md @@ -11,22 +11,21 @@ A future-proof port of the `com.google.gwt.editor.Editor` GWT module, with no de For Maven: ```xml - - org.gwtproject.editor - gwt-editor - HEAD-SNAPSHOT - + + org.gwtproject.editor + gwt-editor + 1.0.0-RC1 + ``` and the processor: - ```xml - - org.gwtproject.editor - gwt-editor-processor - HEAD-SNAPSHOT - provided - + + org.gwtproject.editor + gwt-editor-processor + 1.0.0-RC1 + provided + ``` For Gradle: @@ -83,6 +82,7 @@ GWT Editor depends on the following module: ### the bean ```java +//Note place in shared project or package area public class Person { private int id; @@ -129,6 +129,7 @@ public class Person { > this component uses domino-ui ```java +//Note place in client project or package area public class PersonComponent implements IsElement, Editor { @IsDriver @@ -137,6 +138,7 @@ public class PersonComponent implements IsElement, Editor root = DominoElement.of(div()); + //Note Do not create getter/setters for these fields - it will cause a compile issue such as "java.lang.IllegalStateException: generation aborted! No getter exists for >>getId<< -> [Help 1]" IntegerBox id; TextBox name; CheckBox active; @@ -171,8 +173,8 @@ public class PersonComponent implements IsElement, Editor