docs [java]: small psi javadoc fixes

Space-RevId: 94165491a4a213cae18f61195f017a60ecf8a38f

GitOrigin-RevId: 890660cc8dc66de51e82aa64b5c8eb1d196288d6
This commit is contained in:
Bas Leijdekkers
2026-01-23 15:26:39 +00:00
committed by intellij-monorepo-bot
parent 5d88b90720
commit 7adf7ebbe4
2 changed files with 4 additions and 4 deletions
@@ -1,4 +1,4 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2026 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.psi;
import org.jetbrains.annotations.ApiStatus;
@@ -25,9 +25,9 @@ public interface PsiImportModuleStatement extends PsiImportStatementBase {
PsiJavaModule resolveTargetModule();
/**
* Returns the name of the member imported from the statement.
* Returns the name of the module imported by the statement.
*
* @return the name of the member.
* @return the name of the module.
*/
@Nullable String getReferenceName();
@@ -5,7 +5,7 @@ import com.intellij.util.ArrayFactory;
import org.jetbrains.annotations.Nullable;
/**
* Represents a Java {@code import} or {@code import static} statement.
* Represents a Java {@code import}, {@code import static} or {@code import module} statement.
*/
public interface PsiImportStatementBase extends PsiElement {
/**