Interface GraphicsBootstrapper


public interface GraphicsBootstrapper
Defines a type which can be used to perform any bootstrap operations before creating a window during the early loading window process.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    bootstrap(String[] arguments)
    Performs any bootstrapping that needs to be done before creating a window.
    The name of this bootstrapper.
  • Method Details

    • name

      String name()
      The name of this bootstrapper. This is used for logging purposes.
      Returns:
      The name of this bootstrapper.
    • bootstrap

      void bootstrap(String[] arguments)
      Performs any bootstrapping that needs to be done before creating a window.
      Parameters:
      arguments - The arguments provided to the Java process. This is the entire command line, so you can process stuff from it.