com.hp.lft.sdk.te

Class WindowDescription.Init<T extends WindowDescription.Init<T>>

    • Constructor Summary

      ModifierConstructor and Description
      protected Init() 
    • Method Summary

      Modifier and TypeMethod and Description
      WindowDescriptionbuild()
      Returns the built description instance (builder pattern).
      TemulatorStatus(EmulatorStatus emulatorStatus)
      Initializes the current emulator status.
      Thandle(java.lang.Integer handle)
      Initializes a handle to a window.
      Tprotocol(Protocol protocol)
      Initializes the current protocol.
      TshortName(java.lang.String shortName)
      Initializes the short name of the window.
      TshortName(StringProperty shortName)
      Initializes the short name of the window.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • shortName

        public T shortName(java.lang.String shortName)
        Initializes the short name of the window.
        Parameters:
        shortName - the short name of the window.
        Returns:
        the description instance with the updated state (builder pattern).
      • shortName

        public T shortName(StringProperty shortName)
        Initializes the short name of the window.
        Parameters:
        shortName - a StringProperty(or RegExpProperty) representing the short name of the window.
        Returns:
        the description instance with the updated state (builder pattern).
      • protocol

        public T protocol(Protocol protocol)
        Initializes the current protocol.
        Parameters:
        protocol - the current protocol.
        Returns:
        the description instance with the updated state (builder pattern).
      • emulatorStatus

        public T emulatorStatus(EmulatorStatus emulatorStatus)
        Initializes the current emulator status.
        Parameters:
        emulatorStatus - the current emulator status.
        Returns:
        the description instance with the updated state (builder pattern).
      • handle

        public T handle(java.lang.Integer handle)
        Initializes a handle to a window.
        Parameters:
        handle - the handle to a window.
        Returns:
        the description instance with the updated state (builder pattern).