You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2020/09/02 22:00:13 UTC

[isis] 13/17: ISIS-2222: fixes title for Boolean and Long wrapper view models

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch ISIS-2222
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 192b020140c081f30f4f0f2478751fe0dfc0603e
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Aug 30 15:44:30 2020 +0100

    ISIS-2222: fixes title for Boolean and Long wrapper view models
---
 .../main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans.java  | 2 +-
 .../src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans.java b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans.java
index 382567d..283c78d 100644
--- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans.java
+++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/booleans/WrapperBooleans.java
@@ -52,7 +52,7 @@ import demoapp.dom.types.javalang.booleans.vm.WrapperBooleanVm;
 public class WrapperBooleans implements HasAsciiDocDescription {
 
     public String title() {
-        return "Boolean data type";
+        return "Boolean (wrapper) data type";
     }
 
     @Action(semantics = SemanticsOf.SAFE)
diff --git a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs.java b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs.java
index 9e654ab..80622e0 100644
--- a/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs.java
+++ b/examples/demo/domain/src/main/java/demoapp/dom/types/javalang/longs/WrapperLongs.java
@@ -51,7 +51,7 @@ import demoapp.dom.types.javalang.longs.vm.WrapperLongVm;
 public class WrapperLongs implements HasAsciiDocDescription {
 
     public String title() {
-        return "Longdata type";
+        return "Long (wrapper) data type";
     }
 
     @Action(semantics = SemanticsOf.SAFE)