Package org.patternfly.componentgroup.pageheader


package org.patternfly.componentgroup.pageheader
Provides a composite page header component for displaying a title, subtitle, icon, breadcrumb, and label.

The page header is a PFJ-specific composition that combines multiple PatternFly components into a standard page-level header section. It supports an optional icon, title, subtitle, breadcrumb navigation, and label badge.

Usage

PageHeader header = pageHeader()
    .icon(img("icon.svg"))
    .title("My Page")
    .subTitle("A brief description")
    .addBreadcrumb(breadcrumb()
        .addItem(breadcrumbItem("Home", "#"))
        .addItem(breadcrumbItem("Current")))
    .addLabel(label("Administrator"));
See Also:
  • Classes
    Class
    Description
    A composite component that combines a page title, breadcrumb, and actions into a standard page header layout.