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

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

The 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