mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-08-18 03:50:10 +08:00
Merge branch 'GP-0_ryanmkurtz_PR-8952_jstasiak_fix-getname-docs'
This commit is contained in:
+8
-5
@@ -81,15 +81,18 @@ public interface Namespace {
|
||||
public boolean isExternal();
|
||||
|
||||
/**
|
||||
* Get the name of the symbol for this scope
|
||||
* @return the name of the symbol for this scope
|
||||
* {@return the simple namespace name (without parent path)}
|
||||
* <p>
|
||||
* See {@link #getName(boolean)} for the namespace-qualified variant.
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
/**
|
||||
* Returns the fully qualified name
|
||||
* @param includeNamespacePath true to include the namespace in the returned name
|
||||
* @return the fully qualified name
|
||||
* Returns the namespace name, optionally prepended with the full parent namespace path.
|
||||
* @param includeNamespacePath true to include the namespace path
|
||||
* (using {@link #DELIMITER} as separator) in the returned name
|
||||
* @return the simple name if {@code includeNamespacePath} is false, or the full
|
||||
* namespace-qualified name (e.g., {@code "ClassA::InnerClass"}) if true
|
||||
*/
|
||||
public String getName(boolean includeNamespacePath);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user