Package ghidra.util
Interface Location
- 
 public interface Location
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns a description for the location.java.lang.StringgetStringRepresentation()Returns a displayable representation of this location.booleango(ServiceProvider provider)Will attempt to navigate to the location as appropriate.
 
- 
- 
- 
Method Detail- 
getStringRepresentationjava.lang.String getStringRepresentation() Returns a displayable representation of this location.- Returns:
- a displayable representation of this location.
 
 - 
getDescriptionjava.lang.String getDescription() Returns a description for the location. This should probably describe the significance of the location. For example, if this location is from an Issue, then what is its relationship to the issue.- Returns:
- a descrition for the location.
 
 - 
goboolean go(ServiceProvider provider) Will attempt to navigate to the location as appropriate. For example, it may use the goto service to navigate the code browser to a progam and and address. Or it could launch a browser and display a web page.- Parameters:
- provider- a service provider that this location can use to find a service to help with navigation.
- Returns:
- true if the navigation was successful, false otherwise.
 
 
- 
 
-