mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix API in sh run configuration
Make properties of ShRunConfiguration public to allow 3rd-party plugins to use it. GitOrigin-RevId: 29960e97f9f6e6c4754035147bc706ee52c14105
This commit is contained in:
committed by
intellij-monorepo-bot
parent
869ffd1460
commit
ca68642d92
@@ -117,43 +117,43 @@ public class ShRunConfiguration extends LocatableConfigurationBase implements Re
|
||||
return vfile.getPath();
|
||||
}
|
||||
|
||||
String getScriptPath() {
|
||||
public String getScriptPath() {
|
||||
return myScriptPath;
|
||||
}
|
||||
|
||||
void setScriptPath(@NotNull String scriptPath) {
|
||||
public void setScriptPath(@NotNull String scriptPath) {
|
||||
myScriptPath = scriptPath.trim();
|
||||
}
|
||||
|
||||
String getScriptOptions() {
|
||||
public String getScriptOptions() {
|
||||
return myScriptOptions;
|
||||
}
|
||||
|
||||
void setScriptOptions(@NotNull String scriptOptions) {
|
||||
public void setScriptOptions(@NotNull String scriptOptions) {
|
||||
myScriptOptions = scriptOptions.trim();
|
||||
}
|
||||
|
||||
String getScriptWorkingDirectory() {
|
||||
public String getScriptWorkingDirectory() {
|
||||
return myScriptWorkingDirectory;
|
||||
}
|
||||
|
||||
void setScriptWorkingDirectory(String scriptWorkingDirectory) {
|
||||
public void setScriptWorkingDirectory(String scriptWorkingDirectory) {
|
||||
myScriptWorkingDirectory = scriptWorkingDirectory.trim();
|
||||
}
|
||||
|
||||
String getInterpreterPath() {
|
||||
public String getInterpreterPath() {
|
||||
return myInterpreterPath;
|
||||
}
|
||||
|
||||
void setInterpreterPath(@NotNull String interpreterPath) {
|
||||
public void setInterpreterPath(@NotNull String interpreterPath) {
|
||||
myInterpreterPath = interpreterPath.trim();
|
||||
}
|
||||
|
||||
String getInterpreterOptions() {
|
||||
public String getInterpreterOptions() {
|
||||
return myInterpreterOptions;
|
||||
}
|
||||
|
||||
void setInterpreterOptions(@NotNull String interpreterOptions) {
|
||||
public void setInterpreterOptions(@NotNull String interpreterOptions) {
|
||||
myInterpreterOptions = interpreterOptions.trim();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user