diff --git a/java/debugger/openapi/src/com/intellij/debugger/PositionManager.java b/java/debugger/openapi/src/com/intellij/debugger/PositionManager.java index 100ff7793a2d..5713483f6357 100644 --- a/java/debugger/openapi/src/com/intellij/debugger/PositionManager.java +++ b/java/debugger/openapi/src/com/intellij/debugger/PositionManager.java @@ -47,6 +47,7 @@ public interface PositionManager { * @param classPosition the source position. * @return the list of corresponding Java classes. * @throws NoDataException if the location is not in the code managed by this {@code PositionManager} + * @see com.intellij.debugger.engine.jdi.VirtualMachineProxy#classesByName */ @NotNull List getAllClasses(SourcePosition classPosition) throws NoDataException; @@ -58,6 +59,7 @@ public interface PositionManager { * @param position the position in the source code. * @return the list of corresponding bytecode locations. * @throws NoDataException if the location is not in the code managed by this {@code PositionManager} + * @see ReferenceType#locationsOfLine(int) */ @NotNull List locationsOfLine(ReferenceType type, SourcePosition position) throws NoDataException;