Files
VisualSapfor/src/Common/Visual/Tables/RendererDBObject.java

11 lines
353 B
Java
Raw Normal View History

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