no message

This commit is contained in:
2024-10-25 13:00:29 +03:00
parent 1d1618ae95
commit 48d96d51d7
3 changed files with 4 additions and 7 deletions

5
.idea/workspace.xml generated
View File

@@ -6,10 +6,7 @@
</artifacts-to-build>
</component>
<component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Common/Visual/DataSetControlForm.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Common/Visual/DataSetControlForm.java" afterDir="false" />
</list>
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />

View File

@@ -13,7 +13,7 @@ public class DataSet<K, D extends DBObject> extends DataSetAnchestor {
public LinkedHashMap<K, D> Data = new LinkedHashMap<>(); //наполнение
Class<K> k; //класс первичного ключа.
//-
DataSetControlForm ui = null;
DataSetControlForm<D> ui = null;
//--
public DataSet(Class<K> k_in, Class<D> d_in) {
k = k_in;
@@ -27,7 +27,7 @@ public class DataSet<K, D extends DBObject> extends DataSetAnchestor {
return "";
}
//---
protected DataSetControlForm createUI(JPanel mountPanel) {
protected DataSetControlForm<D> createUI(JPanel mountPanel) {
return null;
}
//БАЗА ДАННЫХ

View File

@@ -17,7 +17,7 @@ public class ArraysDBTable extends DBTable<String, DBArray> {
return "сохранённые состояния";
}
@Override
protected DataSetControlForm createUI(JPanel mountPanel) {
protected DataSetControlForm<DBArray> createUI(JPanel mountPanel) {
return new DBArraysForm(this, mountPanel);
}
}