Package de.loskutov.anyedit.util
Class LineReplaceResult
- java.lang.Object
-
- de.loskutov.anyedit.util.LineReplaceResult
-
public class LineReplaceResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description int
rangeToReplace
changed results must have have range > 0, to replace entire line specify "-1" for the rangeint
startReplaceIndex
relative to line start, changed results must have index >= 0java.lang.String
textToReplace
changed results must have not-null text to replace
-
Constructor Summary
Constructors Constructor Description LineReplaceResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
startReplaceIndex
public int startReplaceIndex
relative to line start, changed results must have index >= 0
-
rangeToReplace
public int rangeToReplace
changed results must have have range > 0, to replace entire line specify "-1" for the range
-
textToReplace
public java.lang.String textToReplace
changed results must have not-null text to replace
-
-