Package proguard.analysis.datastructure
Class FileLocation
- java.lang.Object
-
- proguard.analysis.datastructure.Location
-
- proguard.analysis.datastructure.FileLocation
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
filename
java.lang.String
obfuscatedFilename
-
Fields inherited from class proguard.analysis.datastructure.Location
line, UNKNOWN_LINE
-
-
Constructor Summary
Constructors Constructor Description FileLocation(java.lang.String filename, int line)
FileLocation(java.lang.String filename, int line, java.lang.String obfuscatedFilename)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Location o)
boolean
equals(java.lang.Object o)
java.lang.String
getName()
Returns the name of the location, e.g., the signature of a CodeLocation, or the filename of a FileLocationjava.lang.String
getOriginalFilename()
int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from class:Location
Returns the name of the location, e.g., the signature of a CodeLocation, or the filename of a FileLocation
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
compareTo
public int compareTo(Location o)
-
getOriginalFilename
public java.lang.String getOriginalFilename()
-
-