Class BasicBreadcrumbBarUI


public class BasicBreadcrumbBarUI extends BreadcrumbBarUI
Basic UI for breadcrumb bar (JBreadcrumbBar).
  • Field Details

  • Constructor Details

    • BasicBreadcrumbBarUI

      public BasicBreadcrumbBarUI()
  • Method Details

    • createUI

      public static ComponentUI createUI(JComponent c)
    • installUI

      public void installUI(JComponent c)
      Overrides:
      installUI in class ComponentUI
    • uninstallUI

      public void uninstallUI(JComponent c)
      Overrides:
      uninstallUI in class ComponentUI
    • installDefaults

      protected void installDefaults(JBreadcrumbBar bar)
    • installComponents

      protected void installComponents(JBreadcrumbBar bar)
    • installListeners

      protected void installListeners(JBreadcrumbBar bar)
    • uninstallDefaults

      protected void uninstallDefaults(JBreadcrumbBar bar)
    • uninstallComponents

      protected void uninstallComponents(JBreadcrumbBar bar)
    • uninstallListeners

      protected void uninstallListeners(JBreadcrumbBar bar)
    • createLayoutManager

      protected LayoutManager createLayoutManager()
      Invoked by installUI to create a layout manager object to manage the JBreadcrumbBar.
      Returns:
      a layout manager object
      See Also:
    • updateComponents

      protected void updateComponents()
    • pushChoices

      protected Object pushChoices(org.pushingpixels.flamingo.internal.ui.bcb.BreadcrumbItemChoices bic)
      Pushes a choice to the top position of the stack. If the current top is already a BreadcrumbItemChoices, replace it.
      Parameters:
      bic - The choice item to push.
      Returns:
      The item that has been pushed.
    • pushChoices

      protected Object pushChoices(org.pushingpixels.flamingo.internal.ui.bcb.BreadcrumbItemChoices bic, boolean toUpdateUI)
      Pushes a choice to the top position of the stack. If the current top is already a BreadcrumbItemChoices, replace it.
      Parameters:
      bic - The choice item to push.
      toUpdateUI - Indication whether the bar should be repainted.
      Returns:
      The item that has been pushed.
    • pushChoice

      protected Object pushChoice(BreadcrumbItem bi, boolean toUpdateUI)
      Pushes an item to the top position of the stack. If the current top is already a BreadcrumbItemChoices, replace it.
      Parameters:
      bi - The item to push.
      toUpdateUI - Indication whether the bar should be repainted.
      Returns:
      The item that has been pushed.