mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
CPP-18381 partial fix -relax Tool setters access
GitOrigin-RevId: 71bb577afff995e3f3567b91580670f8c47f4114
This commit is contained in:
committed by
intellij-monorepo-bot
parent
8dbb39d60f
commit
d6e12565fe
@@ -121,27 +121,27 @@ public class Tool implements SchemeElement {
|
||||
return mySynchronizeAfterExecution;
|
||||
}
|
||||
|
||||
void setName(String name) {
|
||||
public void setName(String name) {
|
||||
myName = name;
|
||||
}
|
||||
|
||||
void setDescription(String description) {
|
||||
public void setDescription(String description) {
|
||||
myDescription = description;
|
||||
}
|
||||
|
||||
void setGroup(@NotNull String group) {
|
||||
myGroup = StringUtil.isEmpty(group)?DEFAULT_GROUP_NAME:group;
|
||||
public void setGroup(@NotNull String group) {
|
||||
myGroup = StringUtil.isEmpty(group) ? DEFAULT_GROUP_NAME : group;
|
||||
}
|
||||
|
||||
void setShownInMainMenu(boolean shownInMainMenu) {
|
||||
public void setShownInMainMenu(boolean shownInMainMenu) {
|
||||
myShownInMainMenu = shownInMainMenu;
|
||||
}
|
||||
|
||||
void setShownInEditor(boolean shownInEditor) {
|
||||
public void setShownInEditor(boolean shownInEditor) {
|
||||
myShownInEditor = shownInEditor;
|
||||
}
|
||||
|
||||
void setShownInProjectViews(boolean shownInProjectViews) {
|
||||
public void setShownInProjectViews(boolean shownInProjectViews) {
|
||||
myShownInProjectViews = shownInProjectViews;
|
||||
}
|
||||
|
||||
@@ -149,15 +149,15 @@ public class Tool implements SchemeElement {
|
||||
myShownInSearchResultsPopup = shownInSearchResultsPopup;
|
||||
}
|
||||
|
||||
void setUseConsole(boolean useConsole) {
|
||||
public void setUseConsole(boolean useConsole) {
|
||||
myUseConsole = useConsole;
|
||||
}
|
||||
|
||||
void setShowConsoleOnStdOut(boolean showConsole) {
|
||||
public void setShowConsoleOnStdOut(boolean showConsole) {
|
||||
myShowConsoleOnStdOut = showConsole;
|
||||
}
|
||||
|
||||
void setShowConsoleOnStdErr(boolean showConsole) {
|
||||
public void setShowConsoleOnStdErr(boolean showConsole) {
|
||||
myShowConsoleOnStdErr = showConsole;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user