Interface SlimeLauncherOptionsNested.ModConfig

All Superinterfaces:
org.gradle.api.Named
All Known Implementing Classes:
SlimeLauncherOptionsImpl.ModConfigImpl
Enclosing interface:
SlimeLauncherOptionsNested

public static interface SlimeLauncherOptionsNested.ModConfig extends org.gradle.api.Named
Represents a legacy mod configuration for older versions of Forge.
See Also:
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.gradle.api.Named

    org.gradle.api.Named.Namer
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setSources(List<org.gradle.api.tasks.SourceSet> sources)
    Sets the source sets to use for this configuration.
    void
    source(org.gradle.api.tasks.SourceSet source)
    Adds to the source sets to use for this configuration.
    void
    sources(List<org.gradle.api.tasks.SourceSet> sources)
    Adds to the source sets to use for this configuration.
    void
    sources(org.gradle.api.tasks.SourceSet... sources)
    Adds to the source sets to use for this configuration.

    Methods inherited from interface org.gradle.api.Named

    getName
  • Method Details

    • setSources

      void setSources(List<org.gradle.api.tasks.SourceSet> sources)
      Sets the source sets to use for this configuration.
      Parameters:
      sources - The source sets to use
    • sources

      void sources(List<org.gradle.api.tasks.SourceSet> sources)
      Adds to the source sets to use for this configuration.
      Parameters:
      sources - The source sets to use
    • sources

      void sources(org.gradle.api.tasks.SourceSet... sources)
      Adds to the source sets to use for this configuration.
      Parameters:
      sources - The source sets to use
    • source

      void source(org.gradle.api.tasks.SourceSet source)
      Adds to the source sets to use for this configuration.
      Parameters:
      source - The source set to use