Interface RunTypeInfo

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int RUN_TYPE_NAME_SIZE
      Limit to size of type name.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Returns short description which will be shown in the user interface
      java.lang.String getDisplayName()
      Returns name of this runner to show in UI.
      java.lang.String getType()
      Returns runner type which should match the BuildRunner.getType.
    • Method Detail

      • getType

        @NotNull
        java.lang.String getType()
        Returns runner type which should match the BuildRunner.getType.
        Returns:
        runner type, will be shown in Runners combobox and should match the BuildRunner.getType The name is limited by RUN_TYPE_NAME_SIZE.
      • getDisplayName

        @NotNull
        java.lang.String getDisplayName()
        Returns name of this runner to show in UI.
        Returns:
        see above
      • getDescription

        @NotNull
        java.lang.String getDescription()
        Returns short description which will be shown in the user interface
        Returns:
        see above