All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.robocode.tankroyale.gui.ui.newbattle.BootedBotCellRenderer.kt Maven / Gradle / Ivy

package dev.robocode.tankroyale.gui.ui.newbattle

import dev.robocode.tankroyale.gui.booter.DirAndPid
import javax.swing.JList

class BootedBotCellRenderer : AbstractListCellRenderer() {

    override fun onRender(list: JList?, value: Any?, index: Int, isSelected: Boolean, cellHasFocus: Boolean) {
        (value as DirAndPid).apply { text = "$dir ($pid)" }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy