Java 类com.intellij.ui.ActiveComponent 实例源码

项目:intellij-ce-playground    文件:CompositeActiveComponent.java   
public CompositeActiveComponent(@NotNull ActiveComponent... components) {
  myComponents = components;

  myComponent = new JPanel(new FlowLayout(FlowLayout.CENTER, 2, 4));
  myComponent.setBorder(null);
  myComponent.setOpaque(false);
  for (ActiveComponent component : components) {
    myComponent.add(component.getComponent());
  }
}
项目:tools-idea    文件:CompositeActiveComponent.java   
public CompositeActiveComponent(@NotNull ActiveComponent... components) {
  myComponents = components;

  myComponent = new JPanel(new FlowLayout());
  myComponent.setOpaque(false);
  for (ActiveComponent component : components) {
    myComponent.add(component.getComponent());
  }
}
项目:dagger-intellij-plugin    文件:CompositeActiveComponent.java   
public CompositeActiveComponent(@NotNull ActiveComponent... components) {
  myComponents = components;

  myComponent = new JPanel(new FlowLayout());
  myComponent.setOpaque(false);
  for (ActiveComponent component : components) {
    myComponent.add(component.getComponent());
  }
}
项目:consulo    文件:CompositeActiveComponent.java   
public CompositeActiveComponent(@Nonnull ActiveComponent... components) {
  myComponents = components;

  myComponent = new JPanel(new FlowLayout());
  myComponent.setOpaque(false);
  for (ActiveComponent component : components) {
    myComponent.add(component.getComponent());
  }
}
项目:otto-intellij-plugin    文件:CompositeActiveComponent.java   
public CompositeActiveComponent(@NotNull ActiveComponent... components) {
  myComponents = components;

  myComponent = new JPanel(new FlowLayout());
  myComponent.setOpaque(false);
  for (ActiveComponent component : components) {
    myComponent.add(component.getComponent());
  }
}
项目:intellij-ce-playground    文件:ComponentPopupBuilder.java   
@NotNull
ComponentPopupBuilder setCommandButton(@NotNull ActiveComponent commandButton);
项目:intellij-ce-playground    文件:ComponentPopupBuilderImpl.java   
@Override
@NotNull
public ComponentPopupBuilder setCommandButton(@NotNull ActiveComponent button) {
  myCommandButton = button;
  return this;
}
项目:intellij-ce-playground    文件:CompositeActiveComponent.java   
@Override
public void setActive(boolean active) {
  for (ActiveComponent component : myComponents) {
    component.setActive(active);
  }
}
项目:tools-idea    文件:PopupChooserBuilder.java   
public PopupChooserBuilder setCommandButton(@NotNull ActiveComponent commandButton) {
  myCommandButton = commandButton;
  return this;
}
项目:tools-idea    文件:ComponentPopupBuilder.java   
@NotNull
ComponentPopupBuilder setCommandButton(@NotNull ActiveComponent commandButton);
项目:tools-idea    文件:ComponentPopupBuilderImpl.java   
@Override
@NotNull
public ComponentPopupBuilder setCommandButton(@NotNull ActiveComponent button) {
  myCommandButton = button;
  return this;
}
项目:tools-idea    文件:CompositeActiveComponent.java   
@Override
public void setActive(boolean active) {
  for (ActiveComponent component : myComponents) {
    component.setActive(active);
  }
}
项目:dagger-intellij-plugin    文件:CompositeActiveComponent.java   
@Override
public void setActive(boolean active) {
  for (ActiveComponent component : myComponents) {
    component.setActive(active);
  }
}
项目:consulo    文件:PopupChooserBuilder.java   
public PopupChooserBuilder setCommandButton(@Nonnull ActiveComponent commandButton) {
  myCommandButton = commandButton;
  return this;
}
项目:consulo    文件:ComponentPopupBuilder.java   
@Nonnull
ComponentPopupBuilder setCommandButton(@Nonnull ActiveComponent commandButton);
项目:consulo    文件:ComponentPopupBuilderImpl.java   
@Override
@Nonnull
public ComponentPopupBuilder setCommandButton(@Nonnull ActiveComponent button) {
  myCommandButton = button;
  return this;
}
项目:consulo    文件:CompositeActiveComponent.java   
@Override
public void setActive(boolean active) {
  for (ActiveComponent component : myComponents) {
    component.setActive(active);
  }
}
项目:otto-intellij-plugin    文件:CompositeActiveComponent.java   
@Override
public void setActive(boolean active) {
  for (ActiveComponent component : myComponents) {
    component.setActive(active);
  }
}