Package org.emftrace.emffit.ui.controls.linkedtext

Examples of org.emftrace.emffit.ui.controls.linkedtext.LinkedText


    textComposite = new Composite(getBaseComposite(), SWT.BORDER);
    textComposite.setLayout(new RowLayout(SWT.HORIZONTAL));
   
    textComposite.setBackground(textComposite.getParent().getBackground());

    text = new LinkedText(this.textComposite,  SWT.V_SCROLL);

    text.setWordWrap(true);
    text.setLayoutData(new RowData(684, 50));
  }
View Full Code Here


    editorComposite = new Composite(getBaseComposite(), SWT.NONE);
    editorComposite.setLayout(new RowLayout(SWT.None));
    editorComposite.setToolTipText(headComposite.getToolTipText());
    editorComposite.setBackground(headComposite.getParent().getBackground());
   
    descriptionText = new LinkedText(editorComposite, SWT.BORDER | SWT.V_SCROLL);
    descriptionText.setWordWrap(true);
    descriptionText.setLayoutData(new RowData(689,50));
    descriptionText.setToolTipText("please enter here the description for the strategy");
   
    typeLabel = new Label(headComposite, SWT.NONE);
View Full Code Here

   
    Label descriptionLabel = new Label(editorComposite, SWT.None);
    descriptionLabel.setText("description");
    descriptionLabel.setBackground(descriptionLabel.getParent().getBackground());
   
    descriptionText = new LinkedText(editorComposite, SWT.V_SCROLL | SWT.BORDER);
    descriptionText.setToolTipText("please enter here the description of the factor");
    descriptionText.setWordWrap(true);
   
    Label flexibilityLabel = new Label(editorComposite, SWT.None);
    flexibilityLabel.setText("flexibility");
    flexibilityLabel.setBackground(flexibilityLabel.getParent().getBackground());
   
    flexibilityText = new LinkedText(editorComposite, SWT.V_SCROLL | SWT.BORDER );
    flexibilityText.setToolTipText("please enter here the flexibility of the factor");
    flexibilityText.setWordWrap(true);
   
    Label changeabilityLabel = new Label(editorComposite, SWT.None);
    changeabilityLabel.setText("changeability");
    changeabilityLabel.setBackground(changeabilityLabel.getParent().getBackground());
     
    changeabilityText = new LinkedText(editorComposite, SWT.V_SCROLL | SWT.BORDER);
    changeabilityText.setToolTipText("please enter here the changeability of the factor");   
    changeabilityText.setWordWrap(true);
   
    Label influenceLabel = new Label(editorComposite, SWT.None);
    influenceLabel.setText("influence");
    influenceLabel.setBackground(influenceLabel.getParent().getBackground());
   
    influenceText = new LinkedText(editorComposite, SWT.V_SCROLL | SWT.BORDER);
    influenceText.setToolTipText("please enter here the influence of the factor");
    influenceText.setWordWrap(true);
   
    priorityLabel = new Label(captionComposite, SWT.NONE);
    priorityLabel.setBackground(captionComposite.getBackground());
View Full Code Here

  protected void createControls(){
    super.createControls();
    getBaseComposite().setLayout(new RowLayout());
   
    label = new Label(getBaseComposite(), SWT.NONE);
    editor = new LinkedText(getBaseComposite(), SWT.V_SCROLL | SWT.BORDER);
    editor.setWordWrap(true);
    editor.setLayoutData(new RowData(687, 50))
  }
View Full Code Here

TOP

Related Classes of org.emftrace.emffit.ui.controls.linkedtext.LinkedText

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.