Java 类com.intellij.uiDesigner.propertyInspector.properties.VertAlignProperty 实例源码

项目:intellij-ce-playground    文件:RadFormLayoutManager.java   
@Override
public Property[] getComponentProperties(final Project project, final RadComponent component) {
  return new Property[] {
    HorzAlignProperty.getInstance(project),
    VertAlignProperty.getInstance(project),
    new ComponentInsetsProperty()
  };
}
项目:intellij-ce-playground    文件:RadGridBagLayoutManager.java   
@Override
public Property[] getComponentProperties(final Project project, final RadComponent component) {
  return new Property[]{
    new HorzAlignProperty(),
    new VertAlignProperty(),
    new ComponentInsetsProperty(),
    new WeightProperty(true),
    new WeightProperty(false),
    new IPadProperty(true),
    new IPadProperty(false)
  };
}
项目:tools-idea    文件:RadFormLayoutManager.java   
@Override
public Property[] getComponentProperties(final Project project, final RadComponent component) {
  return new Property[] {
    HorzAlignProperty.getInstance(project),
    VertAlignProperty.getInstance(project),
    new ComponentInsetsProperty()
  };
}
项目:tools-idea    文件:RadGridBagLayoutManager.java   
@Override
public Property[] getComponentProperties(final Project project, final RadComponent component) {
  return new Property[]{
    new HorzAlignProperty(),
    new VertAlignProperty(),
    new ComponentInsetsProperty(),
    new WeightProperty(true),
    new WeightProperty(false),
    new IPadProperty(true),
    new IPadProperty(false)
  };
}
项目:consulo-ui-designer    文件:RadFormLayoutManager.java   
@Override
public Property[] getComponentProperties(final Project project, final RadComponent component) {
  return new Property[] {
    HorzAlignProperty.getInstance(project),
    VertAlignProperty.getInstance(project),
    new ComponentInsetsProperty()
  };
}
项目:consulo-ui-designer    文件:RadGridBagLayoutManager.java   
@Override
public Property[] getComponentProperties(final Project project, final RadComponent component) {
  return new Property[]{
    new HorzAlignProperty(),
    new VertAlignProperty(),
    new ComponentInsetsProperty(),
    new WeightProperty(true),
    new WeightProperty(false),
    new IPadProperty(true),
    new IPadProperty(false)
  };
}