Files
VisualSapfor/src/_VisualDVM/ProjectData/SapforData/Regions/ParallelRegionsSet.java

18 lines
697 B
Java
Raw Normal View History

package _VisualDVM.ProjectData.SapforData.Regions;
import Common.Database.Tables.DataSet;
import Common.Visual.DataSetControlForm;
import _VisualDVM.ProjectData.SapforData.Regions.UI.ParallelRegionsForm;
import javax.swing.*;
import java.math.BigInteger;
public class ParallelRegionsSet extends DataSet<BigInteger, ParallelRegion> {
//суррогат. нужен только для сохры столбцов. во всяком случае пока.
public ParallelRegionsSet() {
super(BigInteger.class, ParallelRegion.class);
}
@Override
protected DataSetControlForm createUI(JPanel mountPanel) {
2024-10-20 17:44:30 +03:00
return new ParallelRegionsForm(this, mountPanel);
}
}