Examples of ViewForm


Examples of org.eclipse.swt.custom.ViewForm

        }
      }

    });

    ViewForm fForm = new ViewForm(area, SWT.BORDER | SWT.FLAT);
    gd = new GridData(GridData.FILL_HORIZONTAL);
    gd.horizontalSpan = 2;
    fForm.setLayoutData(gd);
    fLabel = new CLabel(fForm, SWT.FLAT);
    fLabel.setFont(fForm.getFont());
    fForm.setContent(fLabel);

    IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
    ISelection selection = window.getSelectionService().getSelection();
    if (selection instanceof ITextSelection) {
      String text = ((ITextSelection) selection).getText();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.