Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
public class AppSettingsComponent {

private final JPanel myMainPanel;
private final JLabel header = new JLabel("[New Module Button Settings]: Controls files automatically created when making a new Module");

private final JBCheckBox myOutcomeStatus = new JBCheckBox("Outcomes");
private final JBCheckBox myReadingStatus = new JBCheckBox("Readings");
private final JBCheckBox myExperienceStatus = new JBCheckBox("Experiences");
private final JBCheckBox myAssessmentStatus = new JBCheckBox("Assessments");

public AppSettingsComponent() {
myMainPanel = FormBuilder.createFormBuilder()
.addComponent(header, 1)
.addComponent(myOutcomeStatus, 1)
.addComponent(myReadingStatus, 1)
.addComponent(myExperienceStatus, 1)
Expand Down