Package nl.lxtreme.ols.client.signaldisplay

Examples of nl.lxtreme.ols.client.signaldisplay.MeasurementInfo


  {
    Point dropPoint = new Point( aCoordinate );

    if ( getModel().isSnapCursorMode() )
    {
      final MeasurementInfo signalHover = getModel().getSignalHover( aCoordinate );
      if ( ( signalHover != null ) && !signalHover.isEmpty() )
      {
        dropPoint.x = signalHover.getMidSamplePos().intValue();
      }
    }
    dropPoint.y = 0;

    return dropPoint;
View Full Code Here

TOP

Related Classes of nl.lxtreme.ols.client.signaldisplay.MeasurementInfo

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.