Package com.google.devtools.depan.eclipse.utils

Examples of com.google.devtools.depan.eclipse.utils.RelationshipPicker


    final Text newSet = new Text(leftPanel, SWT.SINGLE);
    Button create = new Button(leftPanel, SWT.PUSH);
    Button delete = new Button(leftPanel, SWT.PUSH);

    // relation picker (list of relationships with forward/backward selectors)
    relationshipPicker = new RelationshipPicker();
    Control picker = relationshipPicker.getControl(container);

    create.setText("Create set");
    delete.setText("Delete selected set");
View Full Code Here


      Composite parent, int style, ViewEditor viewEditor) {
    control = new Composite(parent, style);
    control.setLayout(new GridLayout(4, false));

    // Column 1: Matcher picking area
    relationshipPicker = new RelationshipPicker();
    Control relationsPanel = relationshipPicker.getControl(control);
    relationsPanel.setLayoutData(
        new GridData(SWT.FILL, SWT.FILL, false, true));

    // Column 2: Matcher/path expression actions
View Full Code Here

      Composite parent, int style, ViewEditor viewEditor) {
    control = new Composite(parent, style);
    control.setLayout(new GridLayout());

    // Use a standard RelationPicker part
    relationshipPicker = new RelationshipPicker();
    Control relationsPanel = relationshipPicker.getControl(control);
    relationsPanel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

    // Add a recursive selection checkbox
    final Button recursiveSelect = new Button(control, SWT.CHECK);
View Full Code Here

    super(parent, style);

    setLayout(new GridLayout());

    // Top: Relation selection
    relationshipPicker = new RelationshipPicker();
    Control relationshipPickerControl = relationshipPicker.getControl(this);
    relationshipPickerControl.setLayoutData(
        new GridData(SWT.FILL, SWT.FILL, true, true));

    // Bottom: Count selection
View Full Code Here

TOP

Related Classes of com.google.devtools.depan.eclipse.utils.RelationshipPicker

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.