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