FileDocCategorySizeDatePackage
TextPaneComposite.javaAPI DocExample429Sun Oct 31 08:42:50 GMT 2004None

TextPaneComposite.java

import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.*;

public class TextPaneComposite extends Composite {
    
    public TextPaneComposite(Composite parent)
    {
        super(parent, SWT.BORDER);
        this.setLayout(new FillLayout());
        final Text t = new Text(this, SWT.MULTI | SWT.BORDER
                 | SWT.WRAP | SWT.V_SCROLL);
        
    }
}