Interface IniProblems

All Superinterfaces:
ProblemFactory

public interface IniProblems extends ProblemFactory
  • Method Details

    • get

      static IniProblems get()
    • invalidSection

      Problem invalidSection(SourceLocation position, String text)

      An INI section header was started with '[' but was not properly closed with ']'. e.g. [model foo instead of [model foo]

    • invalidKeyValue

      Problem invalidKeyValue(SourceLocation position, String text)

      A line looks like a key-value pair but is missing the '=' separator. e.g. param.foo instead of param.foo = value