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

io.codemodder.Line Maven / Gradle / Ivy

package io.codemodder;

/** Represents a line of code. */
public interface Line {
  /**
   * @return the line number, starting from 1
   */
  int number();

  /**
   * @return the content of the line
   */
  String content();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy