Package palmed.edit.text

Examples of palmed.edit.text.Text


    private ILineVisitor mockVisitor;
    private OutputStream mockOutput;

    protected void setUp()
    {
        content = new Content( new Text() ); // FIXME cannot really use a mock text...
        mockVisitor = (ILineVisitor)createMock( ILineVisitor.class );
        mockOutput = (OutputStream)createMock( OutputStream.class );
    }
View Full Code Here


    /**
     * Create a text box.
     */
    public TextBox()
    {
        text_ = new Text();
        // text_ = new LargeText( new Cache( new RecordFactory( "palmed.cache" ), 3 ), TEXT_CHUNKS );
        viewport_ = new Viewport( new Content( text_ ) );
        textArea_ = new TextArea( viewport_ );
        verticalScrollbar_ = new VerticalScrollbar( viewport_ );
        horizontalScrollbar_ = new HorizontalScrollbar( viewport_ );
View Full Code Here

TOP

Related Classes of palmed.edit.text.Text

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.