All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty.tools.xsbt.Action Maven / Gradle / Ivy

There is a newer version: 3.7.2-RC1-bin-20250528-457a463-NIGHTLY
Show newest version
package dotty.tools.xsbt;

import java.util.Optional;

final public class Action implements xsbti.Action {
  private final String _title;
  private final Optional _description;
  private final WorkspaceEdit _edit;

  public Action(String title, Optional description, WorkspaceEdit edit) {
    super();
    this._title = title;
    this._description = description;
    this._edit = edit;
  }

  public String title() {
    return _title;
  }

  public Optional description() {
    return _description;
  }

  public WorkspaceEdit edit() {
    return _edit;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy