Class Msg

java.lang.Object
custom_jfx_plugin.utils.Msg

public final class Msg extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    error(@NotNull String format, Object @Nullable ... args)
    Generate message string
    static void
    error(@Nullable org.gradle.api.Project project, @NotNull String format, Object @Nullable ... args)
    Generate message string
    static void
    error(@Nullable org.gradle.api.Project project, @NotNull Throwable error)
    Generate message string
    static void
    info(@NotNull String format, Object @Nullable ... args)
    Generate message string
    static void
    info(@Nullable org.gradle.api.Project project, @NotNull String format, Object @Nullable ... args)
    Generate message string

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • info

      public static void info(@Nullable @Nullable org.gradle.api.Project project, @NotNull @NotNull String format, Object @Nullable ... args)
      Generate message string
      Parameters:
      project - target project
      format - message format
      args - arguments
    • info

      public static void info(@NotNull @NotNull String format, Object @Nullable ... args)
      Generate message string
      Parameters:
      format - message format
      args - arguments
    • error

      public static void error(@Nullable @Nullable org.gradle.api.Project project, @NotNull @NotNull String format, Object @Nullable ... args)
      Generate message string
      Parameters:
      project - target project
      format - message format
      args - arguments
    • error

      public static void error(@NotNull @NotNull String format, Object @Nullable ... args)
      Generate message string
      Parameters:
      format - message format
      args - arguments
    • error

      public static void error(@Nullable @Nullable org.gradle.api.Project project, @NotNull @NotNull Throwable error)
      Generate message string
      Parameters:
      project - target project
      error - the error to show