Class StatusBarDescription

java.lang.Object
com.hp.lft.sdk.internal.PropertiesDescriptionBase
All Implemented Interfaces:
CloneableObject, Description, com.hp.lft.sdk.internal.DescriptionWithVri, Cloneable

public class StatusBarDescription extends UiObjectBaseDescription
The description of the status line and message line at the bottom of an ApplicationSession window.
  • Constructor Details

    • StatusBarDescription

      public StatusBarDescription()
      Initializes a new instance of the StatusBarDescription class.
    • StatusBarDescription

      protected StatusBarDescription(StatusBarDescription.Init<?> init)
      Initializes a new instance of the StatusBarDescription class using the Builder pattern.
      Parameters:
      init - the Builder pattern.
  • Method Details

    • setErrorCode

      public void setErrorCode(String errorCode)
      Sets the error code of the displayed message.
      Parameters:
      errorCode - the error code of the displayed message.
    • setErrorCode

      public void setErrorCode(StringProperty errorCode)
      Sets the error code of the displayed message.
      Parameters:
      errorCode - a StringProperty or RegExpProperty.
    • getErrorCode

      public StringProperty getErrorCode()
      Returns error code of the displayed message.
      Returns:
      error code of the displayed message.
    • setMessage

      public void setMessage(String message)
      Sets the text of the displayed message.
      Parameters:
      message - the text of the displayed message.
    • setMessage

      public void setMessage(StringProperty message)
      Sets the text of the displayed message.
      Parameters:
      message - a StringProperty or RegExpProperty.
    • getMessage

      public StringProperty getMessage()
      Returns the text of the displayed message.
      Returns:
      the text of the displayed message.
    • setClassPath

      public void setClassPath(String classPath)
      Sets the Oracle class hierarchy of the object's Oracle class.
      Parameters:
      classPath - the Oracle class hierarchy of the object's Oracle class.
    • setClassPath

      public void setClassPath(StringProperty classPath)
      Sets the Oracle class hierarchy of the object's Oracle class.
      Parameters:
      classPath - a StringProperty or RegExpProperty.
    • getClassPath

      public StringProperty getClassPath()
      Returns the Oracle class hierarchy of the object's Oracle class.
      Returns:
      the Oracle class hierarchy of the object's Oracle class.
    • setEnabled

      public void setEnabled(Boolean isEnabled)
      Sets whether the object is enable.
      Parameters:
      isEnabled - true to set as enabled.
    • isEnabled

      public Boolean isEnabled()
      Indicates whether the object is enable.
      Returns:
      true if enabled.