Files
VisualSapfor/src/_VisualDVM/GlobalData/Compiler/CompilersDBTable.java

38 lines
1.5 KiB
Java
Raw Normal View History

2024-10-09 22:21:57 +03:00
package _VisualDVM.GlobalData.Compiler;
import Common.Database.Objects.DBObject;
import Common.Database.Tables.FKBehaviour;
import Common.Database.Tables.FKCurrentObjectBehaviuor;
import Common.Database.Tables.FKDataBehaviour;
import Common.Database.Tables.iDBTable;
import Common.Passes.PassCode_;
2024-10-14 15:19:13 +03:00
import Common.Visual.DataSetControlForm;
import _VisualDVM.GlobalData.Compiler.UI.CompilersForm;
2024-10-09 22:21:57 +03:00
import _VisualDVM.GlobalData.Makefile.Makefile;
import _VisualDVM.GlobalData.Module.Module;
import _VisualDVM.GlobalData.RunConfiguration.RunConfiguration;
import _VisualDVM.Passes.PassCode;
2023-09-17 22:13:42 +03:00
import javax.swing.*;
2023-09-17 22:13:42 +03:00
import java.util.LinkedHashMap;
public class CompilersDBTable extends iDBTable<Compiler> {
public CompilersDBTable() {
super(Compiler.class);
}
@Override
public LinkedHashMap<Class<? extends DBObject>, FKBehaviour> getFKDependencies() {
LinkedHashMap<Class<? extends DBObject>, FKBehaviour> res = new LinkedHashMap<>();
res.put(Makefile.class, new FKBehaviour(FKDataBehaviour.DROP, FKCurrentObjectBehaviuor.PASSIVE));
res.put(Module.class, new FKBehaviour(FKDataBehaviour.DROP, FKCurrentObjectBehaviuor.PASSIVE));
res.put(RunConfiguration.class, new FKBehaviour(FKDataBehaviour.DROP, FKCurrentObjectBehaviuor.PASSIVE));
return res;
}
@Override
protected DataSetControlForm createUI(JPanel mountPanel) {
return new CompilersForm(this, mountPanel);
2023-09-17 22:13:42 +03:00
}
@Override
public PassCode_ getDeletePassCode() {
return PassCode.DeleteCompiler;
}
2023-09-17 22:13:42 +03:00
}