2024-10-09 20:35:18 +03:00
|
|
|
package Common.Visual.Tables;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.TestingSystem.Common.Configuration.Configuration;
|
2024-09-19 23:05:04 +03:00
|
|
|
public class ConfigurationAutoRenderer extends DBObjectRenderer {
|
|
|
|
|
@Override
|
|
|
|
|
public void Display() {
|
|
|
|
|
if (value != null) {
|
|
|
|
|
setIcon(((Configuration)value).GetAutoIcon());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|