2024-10-20 17:27:58 +03:00
|
|
|
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);
|
2024-10-20 17:27:58 +03:00
|
|
|
}
|
|
|
|
|
}
|