Files
VisualSapfor/src/Common_old/UI/Tables/DBObjectRenderer.java

11 lines
353 B
Java
Raw Normal View History

package Common_old.UI.Tables;
import Common.Database.Objects.DBObject;
import Common.Visual.DataControl;
2023-09-17 22:13:42 +03:00
import javax.swing.*;
public abstract class DBObjectRenderer extends RendererCell<DBObject> {
@Override
public DBObject Init(JTable table, Object value, int row, int column) {
return ((DataControl) table).getRowObject(row);
}
}