mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Both setter and getter should start with word 'add'
This commit is contained in:
@@ -276,23 +276,23 @@ public class PyIdeCommonOptionsForm implements AbstractPyCommonOptionsForm {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean addContentRoots() {
|
||||
public boolean shouldAddContentRoots() {
|
||||
return myAddContentRootsCheckbox.isSelected();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean addSourceRoots() {
|
||||
public boolean shouldAddSourceRoots() {
|
||||
return myAddSourceRootsCheckbox.isSelected();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addContentRoots(boolean add) {
|
||||
myAddContentRootsCheckbox.setSelected(add);
|
||||
public void setAddContentRoots(boolean flag) {
|
||||
myAddContentRootsCheckbox.setSelected(flag);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addSourceRoots(boolean add) {
|
||||
myAddSourceRootsCheckbox.setSelected(add);
|
||||
public void setAddSourceRoots(boolean flag) {
|
||||
myAddSourceRootsCheckbox.setSelected(flag);
|
||||
}
|
||||
|
||||
private void createUIComponents() {
|
||||
|
||||
Reference in New Issue
Block a user