Package nl.lxtreme.ols.client.action

Examples of nl.lxtreme.ols.client.action.SmartJumpAction


    aActionManager.add( new ZoomInAction( signalDiagramController ) ).setEnabled( false );
    aActionManager.add( new ZoomOutAction( signalDiagramController ) ).setEnabled( false );
    aActionManager.add( new ZoomOriginalAction( signalDiagramController ) ).setEnabled( false );
    aActionManager.add( new ZoomAllAction( signalDiagramController ) ).setEnabled( false );

    aActionManager.add( new SmartJumpAction( JumpDirection.LEFT, aController ) ).setEnabled( false );
    aActionManager.add( new SmartJumpAction( JumpDirection.RIGHT, aController ) ).setEnabled( false );

    aActionManager.add( new GotoTriggerAction( aController ) ).setEnabled( false );
    for ( int c = 0; c < Ols.MAX_CURSORS; c++ )
    {
      aActionManager.add( new GotoNthCursorAction( signalDiagramController, c ) ).setEnabled( false );
View Full Code Here

TOP

Related Classes of nl.lxtreme.ols.client.action.SmartJumpAction

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.