final ElementList<?> list = (ElementList<?>) property();
if( ! list.isEmpty() )
{
final Element element = list.get( 0 );
final ValueProperty property = (ValueProperty) element.properties().first().definition();
final String value = element.property( property ).text();
checked = ( value != null && value.startsWith( this.prefix ) );
}
setChecked( checked );