All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.moandjiezana.toml.Context Maven / Gradle / Ivy

The newest version!
package com.moandjiezana.toml;

import java.util.concurrent.atomic.AtomicInteger;

class Context {
  final Identifier identifier;
  final AtomicInteger line;
  final Results.Errors errors;
  
  public Context(Identifier identifier, AtomicInteger line, Results.Errors errors) {
    this.identifier = identifier;
    this.line = line;
    this.errors = errors;
  }

  public Context with(Identifier identifier) {
    return new Context(identifier, line, errors);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy