2024-10-08 00:39:13 +03:00
|
|
|
package Common.Visual;
|
|
|
|
|
import Common.CurrentAnchestor;
|
2023-09-17 22:13:42 +03:00
|
|
|
public interface DataControl_OLD {
|
|
|
|
|
//todo скорее всего устареет.
|
2024-10-08 00:39:13 +03:00
|
|
|
default CurrentAnchestor getCurrent() {
|
|
|
|
|
return null;
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
//-?
|
|
|
|
|
default void ShowCurrentObject() throws Exception {
|
|
|
|
|
}
|
|
|
|
|
default void ShowNoCurrentObject() throws Exception {
|
|
|
|
|
}
|
|
|
|
|
}
|