Package palmed.edit.selection

Examples of palmed.edit.selection.Selection


    public Content( final IText text )
    {
        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


    protected void setUp()
    {
        mockText = (IText)createMock( IText.class );
        mockView = (ISelectionView)createMock( ISelectionView.class );
        selection = new Selection( mockText );
        selection.register( mockView );
    }
View Full Code Here

TOP

Related Classes of palmed.edit.selection.Selection

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.