Package com.google.devtools.depan.model

Examples of com.google.devtools.depan.model.RelationshipSet


  protected void updateControls() {
    super.updateControls();

    // Update the RelSet picker for auto-collapse.
    HierarchyCache<NodeDisplayProperty> hierarchies = getEditor().getHierarchies();
    RelationshipSet selectedRelSet = getEditor().getContainerRelSet();
    List<RelSetDescriptor> choices = getEditor().getRelSetChoices();
    autoHierarchyPicker.setInput(hierarchies, selectedRelSet, choices);
  }
View Full Code Here


  @Override
  public void updateControl(ViewEditor viewEditor) {
    relationshipPicker.updateTable(viewEditor.getBuiltinAnalysisPlugins());

    RelationshipSet selectedRelSet = viewEditor.getContainerRelSet();
    List<RelSetDescriptor> choices = viewEditor.getRelSetChoices();
    relationshipPicker.updateRelSetPicker(selectedRelSet, choices );
  }
View Full Code Here

  protected void updateControls() {
    super.updateControls();

    // Update the hierarchy picker for the new editor.
    HierarchyCache<NodeDisplayProperty> hierarchies = getEditor().getHierarchies();
    RelationshipSet selectedRelSet = getEditor().getContainerRelSet();
    List<RelSetDescriptor> choices = getEditor().getRelSetChoices();
    hierarchyPicker.setInput(hierarchies, selectedRelSet, choices );
  }
View Full Code Here

  @Override
  public void updateControl(ViewEditor viewEditor) {
    relationshipPicker.updateTable(viewEditor.getBuiltinAnalysisPlugins());

    RelationshipSet selectedRelSet = viewEditor.getContainerRelSet();
    List<RelSetDescriptor> choices = viewEditor.getRelSetChoices();
    relationshipPicker.updateRelSetPicker(selectedRelSet, choices );
  }
View Full Code Here

  @Override
  protected void updateControls() {
    super.updateControls();

    // Update the RelSet picker for auto-collapse.
    RelationshipSet selectedRelSet = getEditor().getContainerRelSet();
    List<RelSetDescriptor> choices = getEditor().getRelSetChoices();
    layoutChoices.setRelSetInput(selectedRelSet, choices );
    toolPanel.layout();
  }
View Full Code Here

  public void updateControls(ViewEditor editor) {
    updateControls(getEditorSettings(editor));

    relationshipPicker.updateTable(editor.getBuiltinAnalysisPlugins());

    RelationshipSet selectedRelSet = editor.getContainerRelSet();
    List<RelSetDescriptor> choices = editor.getRelSetChoices();
    relationshipPicker.updateRelSetPicker(selectedRelSet, choices );
  }
View Full Code Here

  @Override
  protected void updateControls() {
    super.updateControls();

    // RelationSet picker first
    RelationshipSet selectedRelSet = getEditor().getDisplayRelationSet();
    List<RelSetDescriptor> choices = getEditor().getRelSetChoices();
    relSetPicker.setInput(selectedRelSet, choices);

    updateView();
  }
View Full Code Here

    list.setSelection(new StructuredSelection(buildSelected()));
  }

  private List<Relation> buildSelected() {
    RelationshipSet pickerSet = relSetPicker.getSelection();
    if (null != pickerSet) {
      return buildRelations(pickerSet);
    }

    if (!hasEditor()) {
View Full Code Here

TOP

Related Classes of com.google.devtools.depan.model.RelationshipSet

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.