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

kz.greetgo.logging.structure.parser.model.InstructionPart Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package kz.greetgo.logging.structure.parser.model;

public class InstructionPart {

  public final InstructionPartOwner owner;
  public final Range range;
  private final String content;

  public InstructionPart(InstructionPartOwner owner, Range range, char[] chars) {
    this.owner = owner;
    this.range = range;
    this.content = new String(chars, range.start, range.count());
  }

  public InstructionPart(InstructionPartOwner owner, Range range, String content) {
    this.owner = owner;
    this.range = range;
    this.content = content;
  }

  public int lineNo() {
    return owner.lineNo();
  }

  public String str() {
    return content;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy