2024-10-07 00:58:29 +03:00
|
|
|
package Common_old.UI.Tables;
|
2024-09-19 23:05:04 +03:00
|
|
|
import TestingSystem.Common.Configuration.Configuration;
|
|
|
|
|
public class ConfigurationAutoRenderer extends DBObjectRenderer {
|
|
|
|
|
@Override
|
|
|
|
|
public void Display() {
|
|
|
|
|
if (value != null) {
|
|
|
|
|
setIcon(((Configuration)value).GetAutoIcon());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|