Skip to content

Commit

Permalink
Fixed javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdedic committed Dec 12, 2021
1 parent d56b619 commit 11856ce
Showing 1 changed file with 11 additions and 1 deletion.
Expand Up @@ -21,9 +21,19 @@
import org.eclipse.lsp4j.jsonrpc.validation.NonNull;
import org.eclipse.xtext.xbase.lib.Pure;
import org.eclipse.xtext.xbase.lib.util.ToStringBuilder;
import org.netbeans.spi.project.ActionProvider;
import org.netbeans.spi.project.ProjectConfiguration;
import org.openide.filesystems.FileObject;

/**
* Describes 1st command parameter for 'java.project.action' generic command.
* Describes 1st command parameter for 'java.project.action' generic command. The
* {@link #getAction()} is the project action ID that should be executed, like {@link ActionProvider#COMMAND_BUILD}.
* The client may specify a {@link ProjectConfiguration} to use for action's execution. By default, the active
* (or default) configuration is used if {@link #getFallbackDefault()} is enabled.
* <p>
* Other parameters can be passed to {@code java.project.run.action} LSP commands: it tries to interpret
* the 2nd and further arguments as URI strings, converts them into {@link FileObject}s and passes in context Lookup
* to the action.
* @author sdedic
*/
public final class ProjectActionParams {
Expand Down

0 comments on commit 11856ce

Please sign in to comment.