Schnittstelle MessagesTagDeclaration

Alle Superschnittstellen:
HasBinding, HasFor, HasId, HasIdBindingAndRendered, IsRendered, IsVisual

public interface MessagesTagDeclaration extends HasIdBindingAndRendered, HasFor, IsVisual
Renders error/validation messages.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    void
    setConfirmation(String confirmation)
    Has the user to confirm this message?
    void
    setGlobalOnly(String globalOnly)
    Flag indicating that only messages that are not associated to any particular UIComponent should be displayed.
    void
    setMaxNumber(String maxNumber)
    Sets the maximum number of messages to show.
    void
    setMaxSeverity(String maxSeverity)
    Sets the maximum severity to be shown.
    void
    setMinSeverity(String minSeverity)
    Sets the mininum severity to be shown.
    void
    setOrderBy(String orderBy)
    Sets the order of the messages.
    void
    setShowDetail(String showDetail)
    Flag indicating whether the detail should be included
    void
    setShowSummary(String showSummary)
    Flag indicating whether the summary should be included

    Von Schnittstelle geerbte Methoden org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding

    setBinding

    Von Schnittstelle geerbte Methoden org.apache.myfaces.tobago.internal.taglib.declaration.HasFor

    setFor

    Von Schnittstelle geerbte Methoden org.apache.myfaces.tobago.internal.taglib.declaration.HasId

    setId

    Von Schnittstelle geerbte Methoden org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered

    setRendered

    Von Schnittstelle geerbte Methoden org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual

    setCustomClass, setMarkup
  • Methodendetails

    • setGlobalOnly

      void setGlobalOnly(String globalOnly)
      Flag indicating that only messages that are not associated to any particular UIComponent should be displayed. That are messages without clientId.
    • setShowDetail

      void setShowDetail(String showDetail)
      Flag indicating whether the detail should be included
    • setShowSummary

      void setShowSummary(String showSummary)
      Flag indicating whether the summary should be included
    • setMinSeverity

      void setMinSeverity(String minSeverity)
      Sets the mininum severity to be shown. E. g. "warn" shows only "warn", "error" and "fatal".
    • setMaxSeverity

      void setMaxSeverity(String maxSeverity)
      Sets the maximum severity to be shown. E. g. "warn" shows only "warn" and "info". When setting this attribute you usually shoud take care, that you have a second message tag to show the higher severity levels.
    • setMaxNumber

      void setMaxNumber(String maxNumber)
      Sets the maximum number of messages to show.
    • setOrderBy

      void setOrderBy(String orderBy)
      Sets the order of the messages.
    • setConfirmation

      void setConfirmation(String confirmation)
      Has the user to confirm this message? This attributes handles the case, if the application wants to warn the user about a problem, and the user has to confirm the message before he/she can continue.