/** return if this LED is lit */ public boolean isSelected() { return delegate.isDown(); }
/** light up this LED */ public void setSelected(boolean on) { if (delegate.isDown() != on) { delegate.setDown(on); repaint(); } }