2024-10-09 20:35:18 +03:00
|
|
|
package Common.Visual.Tables;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Objects.DBObject;
|
2024-10-08 00:39:13 +03:00
|
|
|
import Common.Visual.DataControl;
|
2023-09-17 22:13:42 +03:00
|
|
|
|
|
|
|
|
import javax.swing.*;
|
2024-10-15 15:13:57 +03:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|