mirror of
https://github.com/hexedtech/codemp.git
synced 2025-04-03 01:51:40 +02:00
13 lines
260 B
Java
13 lines
260 B
Java
package mp.code.data;
|
|
|
|
public class TextChange {
|
|
public final long start;
|
|
public final long end;
|
|
public final String content;
|
|
|
|
public TextChange(long start, long end, String content) {
|
|
this.start = start;
|
|
this.end = end;
|
|
this.content = content;
|
|
}
|
|
}
|