промежуточный. частичный рефакторинг с прицелом на библиотечную часть

This commit is contained in:
2024-10-07 00:58:29 +03:00
parent c211ffb82b
commit 6b1576461d
798 changed files with 3007 additions and 2344 deletions

View File

@@ -0,0 +1,18 @@
package Common_old.UI.Tables;
import javax.swing.*;
public class MaskedIntegerValueRenderer extends RendererCell<Long> {
@Override
public Long Init(JTable table, Object value, int row, int column) {
return (Long) value;
}
public long getMask() {
return -1;
}
public String getMaskText() {
return "";
}
public void Display() {
if (value != null)
setText(value.equals((getMask())) ? getMaskText() : String.valueOf(value));
}
}