Class PageMainBody

All Implemented Interfaces:
Container<HTMLDivElement,PageMainBody>, Finder<HTMLDivElement>, HasElement<HTMLDivElement,PageMainBody>, HasHTMLElement<HTMLDivElement,PageMainBody>, IsElement<HTMLDivElement>, TypedBuilder<HTMLDivElement,PageMainBody>

public class PageMainBody extends SubComponent<HTMLDivElement,PageMainBody>
Container for the body of a PageSection container. Required if the PageSection has a PageSectionBuilder.limitWidth() modifier.

pageMain("main-id")
        .addSection(pageMainBreadcrumb()
                .limitWidth()
                .addBody(pageMainBody()
                        .add(textContent())))
        .addSection(pageMainSection()
                .add(textContent()))
        .addSection(pageMainSection()
                .limitWidth()
                .addBody(pageMainBody()
                        .add(textContent())));
  • Method Details

    • pageMainBody

      public static PageMainBody pageMainBody()
      Factory method to create a new instance of this component.
    • that

      public PageMainBody that()