Package nl.lxtreme.ols.tool.base.annotation

Examples of nl.lxtreme.ols.tool.base.annotation.ChannelLabelAnnotation


  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 ) );
    }
  }
View Full Code Here

TOP

Related Classes of nl.lxtreme.ols.tool.base.annotation.ChannelLabelAnnotation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.