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

org.jetbrains.java.decompiler.util.token.TextRange Maven / Gradle / Ivy

Go to download

Modern Java & JVM language decompiler aiming to be as accurate as possible, with an emphasis on output quality.

The newest version!
package org.jetbrains.java.decompiler.util.token;

public class TextRange {
  public final int start;
  public final int length;

  public TextRange(int start, int length) {
    this.start = start;
    this.length = length;
  }

  public int getEnd() {
    return start + length;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy