This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/causeway.git
commit 29c38b063ea6c17516c78e45f15f6b7716e11855 Author: danhaywood <[email protected]> AuthorDate: Wed May 17 19:56:32 2023 +0100 CAUSEWAY-2485: updates descriptions of primitive and wrapper types --- .../causeway/blobs/CausewayBlobs-description.adoc | 22 +++++++++------------- .../markups/CausewayMarkups-description.adoc | 2 +- .../asciidocs/CausewayAsciiDocs-description.adoc | 2 +- .../markdowns/CausewayMarkdowns-description.adoc | 2 +- .../vegas/CausewayVegas-description.adoc | 2 +- .../booleans/WrapperBooleans-description.adoc | 2 +- .../javalang/bytes/WrapperBytes-description.adoc | 2 +- .../characters/WrapperCharacters-description.adoc | 2 +- .../doubles/WrapperDoubles-description.adoc | 2 +- .../javalang/enums/JavaLangEnums-description.adoc | 2 +- .../javalang/floats/WrapperFloats-description.adoc | 2 +- .../integers/WrapperIntegers-description.adoc | 2 +- .../javalang/longs/WrapperLongs-description.adoc | 2 +- .../javalang/shorts/WrapperShorts-description.adoc | 2 +- .../strings/JavaLangStrings-description.adoc | 2 +- .../javautil/uuids/JavaUtilUuids-description.adoc | 2 +- .../booleans/PrimitiveBooleans-description.adoc | 2 +- .../bytes/PrimitiveBytes-description.adoc | 2 +- .../chars/PrimitiveChars-description.adoc | 2 +- .../doubles/PrimitiveDoubles-description.adoc | 2 +- .../floats/PrimitiveFloats-description.adoc | 2 +- .../primitive/ints/PrimitiveInts-description.adoc | 2 +- .../longs/PrimitiveLongs-description.adoc | 2 +- .../shorts/PrimitiveShorts-description.adoc | 2 +- 24 files changed, 32 insertions(+), 36 deletions(-) diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/blobs/CausewayBlobs-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/blobs/CausewayBlobs-description.adoc index d35bafbbc9..15d03cfb70 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/blobs/CausewayBlobs-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/blobs/CausewayBlobs-description.adoc @@ -4,28 +4,24 @@ The framework has built-in support for binary large objects, using the `Blob` da NOTE: This is an Apache Causeway specific data type. -From here you can: +== How this demo works -* navigate to an entity that uses the `Blob` datatype -* open a view model that uses the `Blob` datatype +On the left hand side is a collection of entities that uses the `Blob` datatype. +There is also an action that opens a view model; this view model also uses the `Blob` datatype. -Some properties on these domain objects are mandatory, some optional. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. -== Common interfaces +=== Implementation Notes -The entity and view model types both implement some common interfaces. - -=== CausewayBlobHolder - -The `CausewayBlobHolder` interface is used to contribute a number of mixins to both types: +The entity and view model types both implement some common interfaces: +* The `CausewayBlobHolder` interface is used to contribute a number of mixins to both types: ++ [source,java] ---- include::holder/CausewayBlobHolder.java[tags=class] ---- -=== CausewayBlobHolder2 - -The `CausewayBlobHolder2` interface is used to demonstrate support for label positions using `@PropertyLayout(labelPosition=...)`. +* The `CausewayBlobHolder2` interface is used to demonstrate support for label positions using `@PropertyLayout(labelPosition=...)`. Further details, along with the effect of this annotation, can be seen on the entity and view model object pages. diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/markups/CausewayMarkups-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/markups/CausewayMarkups-description.adoc index 34fd6fd89c..d6c59c4096 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/markups/CausewayMarkups-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/causeway/markups/CausewayMarkups-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `org.apache.causeway.applib.value.Markup` datatype. There is also an action that opens a view model; this view model also uses the `org.apache.causeway.applib.value.Markup` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/asciidocs/CausewayAsciiDocs-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/asciidocs/CausewayAsciiDocs-description.adoc index 1b0bbe9016..50c6b08ee7 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/asciidocs/CausewayAsciiDocs-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/asciidocs/CausewayAsciiDocs-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `org.apache.causeway.valuetypes.asciidoc.applib.value.AsciiDoc` datatype. There is also an action that opens a view model; this view model also uses the `org.apache.causeway.valuetypes.asciidoc.applib.value.AsciiDoc` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/markdowns/CausewayMarkdowns-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/markdowns/CausewayMarkdowns-description.adoc index f8f01dd9bb..74b8ef0aa9 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/markdowns/CausewayMarkdowns-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/markdowns/CausewayMarkdowns-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `org.apache.causeway.valuetypes.markdown.applib.value.Markdown` datatype. There is also an action that opens a view model; this view model also uses the `org.apache.causeway.valuetypes.markdown.applib.value.Markdown` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/vegas/CausewayVegas-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/vegas/CausewayVegas-description.adoc index 8d975e7d73..5701fb1902 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/vegas/CausewayVegas-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/causewayval/vegas/CausewayVegas-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `org.apache.causeway.valuetypes.vega.applib.value.Vega` datatype. There is also an action that opens a view model; this view model also uses the `org.apache.causeway.valuetypes.vega.applib.value.Vega` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans-description.adoc index b6a94b0191..a8746dc761 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Boolean` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Boolean` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/bytes/WrapperBytes-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/bytes/WrapperBytes-description.adoc index bf22678c07..65d1f9040d 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/bytes/WrapperBytes-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/bytes/WrapperBytes-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Byte` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Byte` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/characters/WrapperCharacters-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/characters/WrapperCharacters-description.adoc index 644e4e60a6..4ec02cfd60 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/characters/WrapperCharacters-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/characters/WrapperCharacters-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Character` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Character` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/doubles/WrapperDoubles-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/doubles/WrapperDoubles-description.adoc index 56a4f2ff83..c1688b41ef 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/doubles/WrapperDoubles-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/doubles/WrapperDoubles-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Double` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Double` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/enums/JavaLangEnums-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/enums/JavaLangEnums-description.adoc index 567c525aec..8ad668eede 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/enums/JavaLangEnums-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/enums/JavaLangEnums-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `demoapp.dom._infra.samples.DemoEnum` datatype. There is also an action that opens a view model; this view model also uses the `demoapp.dom._infra.samples.DemoEnum` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/floats/WrapperFloats-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/floats/WrapperFloats-description.adoc index 07c4361ac1..a615576864 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/floats/WrapperFloats-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/floats/WrapperFloats-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Float` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Float` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/integers/WrapperIntegers-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/integers/WrapperIntegers-description.adoc index 5ef4cb1ed4..083562f848 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/integers/WrapperIntegers-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/integers/WrapperIntegers-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Integer` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Integer` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs-description.adoc index 7078140374..39e23edd1b 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Long` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Long` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/shorts/WrapperShorts-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/shorts/WrapperShorts-description.adoc index 46ddda9e26..2a3b958e80 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/shorts/WrapperShorts-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/shorts/WrapperShorts-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.Short` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.Short` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/strings/JavaLangStrings-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/strings/JavaLangStrings-description.adoc index 02f5df2a20..adb99c1885 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/strings/JavaLangStrings-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/strings/JavaLangStrings-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.lang.String` datatype. There is also an action that opens a view model; this view model also uses the `java.lang.String` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javautil/uuids/JavaUtilUuids-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/javautil/uuids/JavaUtilUuids-description.adoc index 94cb2d7ba5..4658af9652 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/javautil/uuids/JavaUtilUuids-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javautil/uuids/JavaUtilUuids-description.adoc @@ -10,7 +10,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `java.util.UUID` datatype. There is also an action that opens a view model; this view model also uses the `java.util.UUID` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/booleans/PrimitiveBooleans-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/booleans/PrimitiveBooleans-description.adoc index 0e51c48c06..2649124ed0 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/booleans/PrimitiveBooleans-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/booleans/PrimitiveBooleans-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `boolean` datatype. There is also an action that opens a view model; this view model also uses the `boolean` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/bytes/PrimitiveBytes-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/bytes/PrimitiveBytes-description.adoc index 660a388688..c815aaebaf 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/bytes/PrimitiveBytes-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/bytes/PrimitiveBytes-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `byte` datatype. There is also an action that opens a view model; this view model also uses the `byte` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/chars/PrimitiveChars-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/chars/PrimitiveChars-description.adoc index 876c89bf00..d990ba4cfb 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/chars/PrimitiveChars-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/chars/PrimitiveChars-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `char` datatype. There is also an action that opens a view model; this view model also uses the `char` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/doubles/PrimitiveDoubles-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/doubles/PrimitiveDoubles-description.adoc index aae2f809bb..903c76edd0 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/doubles/PrimitiveDoubles-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/doubles/PrimitiveDoubles-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `double` datatype. There is also an action that opens a view model; this view model also uses the `double` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/floats/PrimitiveFloats-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/floats/PrimitiveFloats-description.adoc index 0be2a35598..508c83867c 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/floats/PrimitiveFloats-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/floats/PrimitiveFloats-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `float` datatype. There is also an action that opens a view model; this view model also uses the `float` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/ints/PrimitiveInts-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/ints/PrimitiveInts-description.adoc index b0e67b43cb..05fd72a56e 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/ints/PrimitiveInts-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/ints/PrimitiveInts-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `int` datatype. There is also an action that opens a view model; this view model also uses the `int` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/longs/PrimitiveLongs-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/longs/PrimitiveLongs-description.adoc index 77731308a5..19bc5d1c3c 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/longs/PrimitiveLongs-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/longs/PrimitiveLongs-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `long` datatype. There is also an action that opens a view model; this view model also uses the `long` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/shorts/PrimitiveShorts-description.adoc b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/shorts/PrimitiveShorts-description.adoc index 02e2ce6afd..053d2b1542 100644 --- a/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/shorts/PrimitiveShorts-description.adoc +++ b/examples/demo/domain/src/main/java/demoapp/dom/types/primitive/shorts/PrimitiveShorts-description.adoc @@ -11,7 +11,7 @@ These can be used either in entities or view models. On the left hand side is a collection of entities that uses the `short` datatype. There is also an action that opens a view model; this view model also uses the `short` datatype. -Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections. +Navigate into the entity or view model to see the datatype used as a property, an action parameter and as a return type of collections, along with code samples. === Implementation Notes
