15 lines
457 B
Java
15 lines
457 B
Java
package _VisualDVM.GlobalData.CompilerOption;
|
|
import Common.Database.Tables.DataSet;
|
|
import Common.Visual.DataSetControlForm;
|
|
|
|
import javax.swing.*;
|
|
public class CompilerOptionsSet extends DataSet<String, CompilerOption> {
|
|
public CompilerOptionsSet() {
|
|
super(String.class, CompilerOption.class);
|
|
}
|
|
@Override
|
|
protected DataSetControlForm createUI(JPanel mountPanel) {
|
|
return new CompilerOptionsForm(this, mountPanel);
|
|
}
|
|
}
|