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 2022/07/31 14:18:06 UTC

[isis] branch ISIS-3102 updated: ISIS-3102: adds 'details' ID to LayoutConstants

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

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


The following commit(s) were added to refs/heads/ISIS-3102 by this push:
     new 6942aedda4 ISIS-3102: adds 'details' ID to LayoutConstants
6942aedda4 is described below

commit 6942aedda4b96dcca3127c556ea7e4b3f30baee2
Author: Dan Haywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Jul 31 15:17:56 2022 +0100

    ISIS-3102: adds 'details' ID to LayoutConstants
---
 .../main/java/org/apache/isis/applib/layout/LayoutConstants.java | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/api/applib/src/main/java/org/apache/isis/applib/layout/LayoutConstants.java b/api/applib/src/main/java/org/apache/isis/applib/layout/LayoutConstants.java
index a843b30362..451de706aa 100644
--- a/api/applib/src/main/java/org/apache/isis/applib/layout/LayoutConstants.java
+++ b/api/applib/src/main/java/org/apache/isis/applib/layout/LayoutConstants.java
@@ -64,4 +64,13 @@ public final class LayoutConstants {
      */
     public static final String METADATA_FIELDSET_ID = "metadata";
 
+    /**
+     * The id for a field set intended to hold additional details.
+     *
+     * <p>
+     *     The fallback layout places the 'details' fieldset under the above 'identity' and 'metadata' fieldsets.
+     * </p>
+     */
+    public static final String DETAILS_FIELDSET_ID = "details";
+
 }