BSRow

Contains a row of content, either on the top-level BSGrid or at any other lower-level element that can contain rows, eg BSTab .

It is rendered as a <div class="row …​">

API

BSRow.java
class BSRow {
  String getId()     (1)
  void setId(String id)
  List<BSRowContent> getCols()
  void setCols(List<BSRowContent> cols)
  String getMetadataError()     (2)
  void setMetadataError(String metadataError)
  BSRowOwner getOwner()     (3)
  void setOwner(BSRowOwner owner)
  BSGrid getGrid()
  String toString()
}
1 getId()

As per <div id="…​">…​</div> : must be unique across entire page.

2 getMetadataError()

For diagnostics; populated by the framework if and only if a metadata error.

3 getOwner()

Owner.

Members

getId()

As per <div id="…​">…​</div> : must be unique across entire page.

getMetadataError()

For diagnostics; populated by the framework if and only if a metadata error.

getOwner()

Owner.

Set programmatically by framework after reading in from XML.