Java 类com.intellij.uiDesigner.propertyInspector.renderers.DimensionRenderer 实例源码

项目:intellij-ce-playground    文件:AbstractDimensionProperty.java   
public AbstractDimensionProperty(@NonNls final String name){
  super(null, name);
  myChildren=new Property[]{
    new IntFieldProperty(this, "width", -1, JBUI.emptySize()),
    new IntFieldProperty(this, "height", -1, JBUI.emptySize()),
  };
  myRenderer = new DimensionRenderer();
  myEditor = new IntRegexEditor<Dimension>(Dimension.class, myRenderer, new int[] { -1, -1 });
}
项目:intellij-ce-playground    文件:IntroDimensionProperty.java   
public IntroDimensionProperty(final String name, final Method readMethod, final Method writeMethod, final boolean storeAsClient){
  super(name, readMethod, writeMethod, storeAsClient);
  myChildren = new Property[]{
    new IntFieldProperty(this, "width", -1, JBUI.emptySize()),
    new IntFieldProperty(this, "height", -1, JBUI.emptySize()),
  };
  myRenderer = new DimensionRenderer();
  myEditor = new IntRegexEditor<Dimension>(Dimension.class, myRenderer, new int[] { -1, -1 });
}
项目:tools-idea    文件:AbstractDimensionProperty.java   
public AbstractDimensionProperty(@NonNls final String name){
  super(null, name);
  myChildren=new Property[]{
    new IntFieldProperty(this, "width", -1, new Dimension(0, 0)),
    new IntFieldProperty(this, "height", -1, new Dimension(0, 0)),
  };
  myRenderer = new DimensionRenderer();
  myEditor = new IntRegexEditor<Dimension>(Dimension.class, myRenderer, new int[] { -1, -1 });
}
项目:tools-idea    文件:IntroDimensionProperty.java   
public IntroDimensionProperty(final String name, final Method readMethod, final Method writeMethod, final boolean storeAsClient){
  super(name, readMethod, writeMethod, storeAsClient);
  myChildren = new Property[]{
    new IntFieldProperty(this, "width", -1, new Dimension(0, 0)),
    new IntFieldProperty(this, "height", -1, new Dimension(0, 0)),
  };
  myRenderer = new DimensionRenderer();
  myEditor = new IntRegexEditor<Dimension>(Dimension.class, myRenderer, new int[] { -1, -1 });
}
项目:consulo-ui-designer    文件:AbstractDimensionProperty.java   
public AbstractDimensionProperty(@NonNls final String name){
  super(null, name);
  myChildren=new Property[]{
    new IntFieldProperty(this, "width", -1, new Dimension(0, 0)),
    new IntFieldProperty(this, "height", -1, new Dimension(0, 0)),
  };
  myRenderer = new DimensionRenderer();
  myEditor = new IntRegexEditor<Dimension>(Dimension.class, myRenderer, new int[] { -1, -1 });
}
项目:consulo-ui-designer    文件:IntroDimensionProperty.java   
public IntroDimensionProperty(final String name, final Method readMethod, final Method writeMethod, final boolean storeAsClient){
  super(name, readMethod, writeMethod, storeAsClient);
  myChildren = new Property[]{
    new IntFieldProperty(this, "width", -1, new Dimension(0, 0)),
    new IntFieldProperty(this, "height", -1, new Dimension(0, 0)),
  };
  myRenderer = new DimensionRenderer();
  myEditor = new IntRegexEditor<Dimension>(Dimension.class, myRenderer, new int[] { -1, -1 });
}