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.Stringfilenamejava.lang.StringobfuscatedFilename-
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 intcompareTo(Location o)booleanequals(java.lang.Object o)java.lang.StringgetName()Returns the name of the location, e.g., the signature of a CodeLocation, or the filename of a FileLocationjava.lang.StringgetOriginalFilename()inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from class:LocationReturns 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:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
compareTo
public int compareTo(Location o)
-
getOriginalFilename
public java.lang.String getOriginalFilename()
-
-