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:
jansorg
2019-10-17 13:08:58 +00:00
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();
}
}