com.hp.lft.sdk

Class DescriptionBase.Init<T extends DescriptionBase.Init<T>>

  • java.lang.Object
    • com.hp.lft.sdk.DescriptionBase.Init<T>
    • Constructor Summary

      ModifierConstructor and Description
      protected Init() 
    • Method Summary

      Modifier and TypeMethod and Description
      DescriptionBasebuild()
      Returns the built description instance (builder pattern).
      Tindex(java.lang.Integer index)
      Initializes the index of this object.
      protected abstract Tself() 
      Tvri(java.util.List<VisualRelation> visualRelations)
      Initializes a VisualRelation definition.
      Tvri(VisualRelation... visualRelations)
      Initializes a VisualRelation definition.
      • 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

      • self

        protected abstract T self()
      • index

        public T index(java.lang.Integer index)
        Initializes the index of this object.
        The index helps to distinguish the object, based on its order of appearance in the application screen relative to all other objects with an otherwise identical description.
        Parameters:
        index - the index of the object.
        Returns:
        the description instance with the update state (builder pattern).
      • vri

        public T vri(java.util.List<VisualRelation> visualRelations)
        Initializes a VisualRelation definition.
        The VRI definition helps to distinguish this object from other objects with otherwise identical descriptions, based on this object's visual relationship to another object in the application.
        Parameters:
        visualRelations - the VisualRelation object containing the VRI definition for this object.
        Returns:
        the description instance with the updated state (builder pattern).
      • vri

        public T vri(VisualRelation... visualRelations)
        Initializes a VisualRelation definition.
        The VRI definition helps to distinguish this object from other objects with otherwise identical descriptions, based on this object's visual relationship to another object in the application.
        Parameters:
        visualRelations - the VisualRelation object containing the VRI definition for this object.
        Returns:
        the description instance with the updated state (builder pattern).
      • build

        public DescriptionBase build()
        Returns the built description instance (builder pattern).
        Returns:
        The built description instance (builder pattern).