2024-10-07 00:58:29 +03:00
|
|
|
package Common_old.UI;
|
|
|
|
|
import Common_old.Current;
|
2023-09-17 22:13:42 +03:00
|
|
|
public interface DataControl_OLD {
|
|
|
|
|
//todo скорее всего устареет.
|
|
|
|
|
default Current getCurrent() {
|
|
|
|
|
return Current.Undefined;
|
|
|
|
|
}
|
|
|
|
|
//-?
|
|
|
|
|
default void ShowCurrentObject() throws Exception {
|
|
|
|
|
}
|
|
|
|
|
default void ShowNoCurrentObject() throws Exception {
|
|
|
|
|
}
|
|
|
|
|
}
|