
dotty.tools.xsbt.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala3-sbt-bridge Show documentation
Show all versions of scala3-sbt-bridge Show documentation
sbt compiler bridge for Dotty
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