From 3f515c0421bf8d8b0a68f05e7a84cd1599e905b8 Mon Sep 17 00:00:00 2001 From: jhillbounce Date: Thu, 30 Mar 2023 18:29:30 +0000 Subject: [PATCH 1/4] Update README.md Had a few compile hiccups - updated to use be compatible with the latest Domino UI (1.0.0-RC13) --- README.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 2b343e9..5281d80 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 directory public class Person { private int id; @@ -129,6 +129,7 @@ public class Person { > this component uses domino-ui ```java +//Note place in *-client directory 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 Date: Thu, 30 Mar 2023 15:52:43 -0600 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5281d80..0a92ad3 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ GWT Editor depends on the following module: ### the bean ```java -//Note place in *-shared directory +//Note place in shared project or package area public class Person { private int id; From 3f768d711e4fed6a07ab55e8dba49511ed55f170 Mon Sep 17 00:00:00 2001 From: jhillbounce Date: Thu, 30 Mar 2023 15:53:36 -0600 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a92ad3..ef6bd23 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ public class Person { > this component uses domino-ui ```java -//Note place in *-client directory +////Note place in client project or package area public class PersonComponent implements IsElement, Editor { @IsDriver From f28b7bfd9213cfdd7ea27514b3152c8da6e08805 Mon Sep 17 00:00:00 2001 From: jhillbounce Date: Thu, 30 Mar 2023 15:54:48 -0600 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef6bd23..2f6ed39 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ public class Person { > this component uses domino-ui ```java -////Note place in client project or package area +//Note place in client project or package area public class PersonComponent implements IsElement, Editor { @IsDriver @@ -138,7 +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]" + //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;