2024-10-09 22:21:57 +03:00
|
|
|
package _VisualDVM.GlobalData.CompilerOption;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Tables.DataSet;
|
2024-10-08 00:39:13 +03:00
|
|
|
import Common.Visual.DataSetControlForm;
|
2024-10-17 20:04:16 +03:00
|
|
|
|
|
|
|
|
import javax.swing.*;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class CompilerOptionsSet extends DataSet<String, CompilerOption> {
|
|
|
|
|
public CompilerOptionsSet() {
|
|
|
|
|
super(String.class, CompilerOption.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
2024-10-17 20:04:16 +03:00
|
|
|
protected DataSetControlForm createUI(JPanel mountPanel) {
|
2024-10-20 17:27:58 +03:00
|
|
|
return new CompilerOptionsForm(this, mountPanel);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|