Uses of Class
com.strobel.decompiler.languages.TextLocation
-
Packages that use TextLocation Package Description com.strobel.decompiler.languages com.strobel.decompiler.languages.java com.strobel.decompiler.languages.java.ast -
-
Uses of TextLocation in com.strobel.decompiler.languages
Fields in com.strobel.decompiler.languages declared as TextLocation Modifier and Type Field Description static TextLocation
TextLocation. EMPTY
Methods in com.strobel.decompiler.languages with parameters of type TextLocation Modifier and Type Method Description int
TextLocation. compareTo(TextLocation o)
boolean
TextLocation. isAfter(TextLocation other)
boolean
TextLocation. isBefore(TextLocation other)
boolean
Region. IsInside(TextLocation location)
Constructors in com.strobel.decompiler.languages with parameters of type TextLocation Constructor Description Region(TextLocation begin, TextLocation end)
Region(java.lang.String fileName, TextLocation begin, TextLocation end)
-
Uses of TextLocation in com.strobel.decompiler.languages.java
Fields in com.strobel.decompiler.languages.java with type parameters of type TextLocation Modifier and Type Field Description private java.util.Stack<TextLocation>
TextOutputFormatter. startLocations
-
Uses of TextLocation in com.strobel.decompiler.languages.java.ast
Fields in com.strobel.decompiler.languages.java.ast declared as TextLocation Modifier and Type Field Description private TextLocation
NewLineNode. _endLocation
private TextLocation
NullReferenceExpression. _endLocation
private TextLocation
PrimitiveExpression. _endLocation
private TextLocation
SuperReferenceExpression. _endLocation
private TextLocation
TextNode. _endLocation
private TextLocation
ThisReferenceExpression. _endLocation
private TextLocation
EmptyStatement. _location
private TextLocation
Identifier. _startLocation
private TextLocation
JavaTokenNode. _startLocation
private TextLocation
NewLineNode. _startLocation
private TextLocation
NullReferenceExpression. _startLocation
private TextLocation
PrimitiveExpression. _startLocation
private TextLocation
SuperReferenceExpression. _startLocation
private TextLocation
TextNode. _startLocation
private TextLocation
ThisReferenceExpression. _startLocation
Methods in com.strobel.decompiler.languages.java.ast with parameters of type TextLocation Modifier and Type Method Description boolean
AstNode. contains(TextLocation location)
static Identifier
Identifier. create(java.lang.String name, TextLocation location)
boolean
AstNode. isInside(TextLocation location)
void
TextNode. setEndLocation(TextLocation endLocation)
void
EmptyStatement. setLocation(TextLocation location)
void
Identifier. setStartLocation(TextLocation startLocation)
void
JavaTokenNode. setStartLocation(TextLocation startLocation)
void
NullReferenceExpression. setStartLocation(TextLocation startLocation)
void
PrimitiveExpression. setStartLocation(TextLocation startLocation)
void
SuperReferenceExpression. setStartLocation(TextLocation startLocation)
void
TextNode. setStartLocation(TextLocation startLocation)
void
ThisReferenceExpression. setStartLocation(TextLocation startLocation)
Constructors in com.strobel.decompiler.languages.java.ast with parameters of type TextLocation Constructor Description Identifier(java.lang.String name, TextLocation location)
JavaModifierToken(TextLocation startLocation, Flags.Flag modifier)
JavaTokenNode(TextLocation startLocation)
MacNewLine(TextLocation startLocation)
NewLineNode(TextLocation startLocation)
NullReferenceExpression(int offset, TextLocation startLocation)
NullReferenceExpression(TextLocation startLocation)
PrimitiveExpression(int offset, java.lang.Object value, TextLocation startLocation, java.lang.String literalValue)
PrimitiveExpression(java.lang.Object value, TextLocation startLocation, java.lang.String literalValue)
SimpleType(java.lang.String identifier, TextLocation location)
SuperReferenceExpression(int offset, TextLocation startLocation)
TextNode(java.lang.String text, TextLocation startLocation, TextLocation endLocation)
ThisReferenceExpression(int offset, TextLocation startLocation)
UnixNewLine(TextLocation startLocation)
WindowsNewLine(TextLocation startLocation)
-