private void prepareResults()
{
if ( this.tckIdx >= 0 )
{
this.annotationListener.clearAnnotations( this.tckIdx );
this.annotationListener.onAnnotation( new ChannelLabelAnnotation( this.tckIdx, JTAGDataSet.JTAG_TCK ) );
}
if ( this.tmsIdx >= 0 )
{
this.annotationListener.clearAnnotations( this.tmsIdx );
this.annotationListener.onAnnotation( new ChannelLabelAnnotation( this.tmsIdx, JTAGDataSet.JTAG_TMS ) );
}
if ( this.tdiIdx >= 0 )
{
this.annotationListener.clearAnnotations( this.tdiIdx );
this.annotationListener.onAnnotation( new ChannelLabelAnnotation( this.tdiIdx, JTAGDataSet.JTAG_TDI ) );
}
if ( this.tdoIdx >= 0 )
{
this.annotationListener.clearAnnotations( this.tdoIdx );
this.annotationListener.onAnnotation( new ChannelLabelAnnotation( this.tdoIdx, JTAGDataSet.JTAG_TDO ) );
}
}