Merge branch 'GP-0_ryanmkurtz_PR-8952_jstasiak_fix-getname-docs'

This commit is contained in:
Ryan Kurtz
2026-02-11 06:41:46 -05:00
@@ -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);