продолжение рефакторинга. создал предка для класса current

This commit is contained in:
2024-10-08 00:39:13 +03:00
parent 3516b58127
commit d0c08a2c7e
157 changed files with 648 additions and 421 deletions

View File

@@ -0,0 +1,14 @@
package Common.Visual;
import Common.CurrentAnchestor;
import Common_old.Current;
public interface DataControl_OLD {
//todo скорее всего устареет.
default CurrentAnchestor getCurrent() {
return null;
}
//-?
default void ShowCurrentObject() throws Exception {
}
default void ShowNoCurrentObject() throws Exception {
}
}