Package palmed.edit.selection

Examples of palmed.edit.selection.UndoManager


        if( text == null )
            throw new IllegalArgumentException( "parameter 'text' is null" );
        text_ = text;
        selection_ = new Selection( text );
        selection_.register( this );
        manager_ = new UndoManager( UNDO_STACK_SIZE );
    }
View Full Code Here


     */
    private IAction mockAction_;

    protected void setUp()
    {
        manager_ = new UndoManager( STACK_SIZE );
        mockAction_ = (IAction)createMock( IAction.class );
    }
View Full Code Here

TOP

Related Classes of palmed.edit.selection.UndoManager

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.