andi-huber commented on code in PR #3187:
URL: https://github.com/apache/causeway/pull/3187#discussion_r2461417918


##########
api/applib/src/main/java/org/apache/causeway/applib/layout/grid/bootstrap/BSRowContent.java:
##########
@@ -19,61 +19,28 @@
 package org.apache.causeway.applib.layout.grid.bootstrap;
 
 import jakarta.xml.bind.annotation.XmlAttribute;
-import jakarta.xml.bind.annotation.XmlTransient;
 
-import org.apache.causeway.applib.annotation.Programmatic;
+import lombok.Getter;
+import lombok.Setter;
 
 /**
  * Common superclass for any content of a row.
  *
- * <p>
- *     Most commonly the content of a row is {@link BSCol col}umns, but it may 
be either of the
- *     {@link BSClearFix clearfix} classes.
- * </p>
+ * <p> Most commonly the content of a row is {@link BSCol col}umns, but it may 
be either of the
+ * {@link BSClearFix clearfix} classes.
  *
  * @since 1.x {@index}
  */
-public abstract class BSRowContent extends BSElementAbstract {
+public sealed abstract class BSRowContent extends BSElementAbstract
+permits BSCol, BSClearFix {
 
     private static final long serialVersionUID = 1L;
 
-    private Size size;
-
     /**
      * Default if not specified is {@link Size#MD}.
      */
-    @XmlAttribute(required = false)
-    public Size getSize() {
-        return size;
-    }
-
-    public void setSize(final Size size) {
-        this.size = size;
-    }
-
-    private BSRowContentOwner owner;

Review Comment:
   restore owner reference



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to