no message
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package Common.Database.Tables;
|
||||
import Common.CurrentAnchestor;
|
||||
import Common.Current_;
|
||||
import Common.Visual.DataSetFilter;
|
||||
import Common.Visual.DataSetControlForm;
|
||||
import Common.Visual.Menus.DataMenuBar;
|
||||
@@ -240,23 +240,23 @@ public class DataSet<K, D extends DBObject> extends DataSetAnchestor {
|
||||
return true;
|
||||
}
|
||||
//------------------------------------------------------------------------------------
|
||||
public CurrentAnchestor CurrentName() {
|
||||
public Current_ CurrentName() {
|
||||
return null;
|
||||
}
|
||||
public boolean CheckCurrent(TextLog log) {
|
||||
return CurrentAnchestor.Check(log, CurrentName());
|
||||
return Current_.Check(log, CurrentName());
|
||||
}
|
||||
public boolean hasCurrent() {
|
||||
return CurrentAnchestor.get(CurrentName()) != null;
|
||||
return Current_.get(CurrentName()) != null;
|
||||
}
|
||||
public void dropCurrent() {
|
||||
CurrentAnchestor.set(CurrentName(), null);
|
||||
Current_.set(CurrentName(), null);
|
||||
}
|
||||
public D getCurrent() {
|
||||
return (D) CurrentAnchestor.get(CurrentName());
|
||||
return (D) Current_.get(CurrentName());
|
||||
}
|
||||
public void setCurrent(D o) {
|
||||
CurrentAnchestor.set(CurrentName(), o);
|
||||
Current_.set(CurrentName(), o);
|
||||
}
|
||||
public Vector<D> getCheckedOrCurrent() {
|
||||
Vector<D> res = new Vector<>();
|
||||
|
||||
Reference in New Issue
Block a user