Package org.eclipse.compare

Examples of org.eclipse.compare.Splitter


   */
  public Object createPartControl(Composite parent) {
    parent.setLayout(new GridLayout());
    parent.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));            

    splitter = new Splitter(parent, SWT.HORIZONTAL);
    splitter.setLayout(new FillLayout());
    splitter.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));          
   
    Composite editorContent = new Composite(splitter, SWT.NONE);
    editorContent.setLayout(new FillLayout());
View Full Code Here

TOP

Related Classes of org.eclipse.compare.Splitter

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.