ChangeParametersRequest: fix Javadoc

GitOrigin-RevId: 11533345245ae02f5dff278f48a2497a6fc0cc0a
This commit is contained in:
Yann Cébron
2019-05-06 18:38:44 +02:00
committed by intellij-monorepo-bot
parent 0a89b5b324
commit 497332e337

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.lang.jvm.actions;
import com.intellij.lang.jvm.JvmParameter;
@@ -7,6 +7,8 @@ import org.jetbrains.annotations.NotNull;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.function.Function;
import java.util.function.Supplier;
public interface ChangeParametersRequest extends ActionRequest {
@@ -14,7 +16,7 @@ public interface ChangeParametersRequest extends ActionRequest {
/**
* Designed to be used inside {@link JvmElementActionsFactory} implementations.
* From the API calling side use {@link MethodRequestsKt#updateMethodParametersRequest(kotlin.jvm.functions.Function0, kotlin.jvm.functions.Function1)}
* From the API calling side use {@link MethodRequestsKt#updateMethodParametersRequest(Supplier, Function)}
*/
class ExistingParameterWrapper implements ExpectedParameter {