Java 类com.intellij.uiDesigner.propertyInspector.editors.IntEditor 实例源码

项目:intellij-ce-playground    文件:IntFieldProperty.java   
public IntFieldProperty(@NotNull final Property parent, @NonNls final String fieldName, final int lowBoundary, final Object templateValue) {
  super(parent, fieldName);
  myParent = parent;
  myFieldName = fieldName;
  myTemplateValue = templateValue;
  myRenderer = new LabelPropertyRenderer<Integer>();
  myEditor = new IntEditor(lowBoundary);
}
项目:tools-idea    文件:IntFieldProperty.java   
public IntFieldProperty(@NotNull final Property parent, @NonNls final String fieldName, final int lowBoundary, final Object templateValue) {
  super(parent, fieldName);
  myParent = parent;
  myFieldName = fieldName;
  myTemplateValue = templateValue;
  myRenderer = new LabelPropertyRenderer<Integer>();
  myEditor = new IntEditor(lowBoundary);
}
项目:consulo-ui-designer    文件:IntFieldProperty.java   
public IntFieldProperty(@NotNull final Property parent, @NonNls final String fieldName, final int lowBoundary, final Object templateValue) {
  super(parent, fieldName);
  myParent = parent;
  myFieldName = fieldName;
  myTemplateValue = templateValue;
  myRenderer = new LabelPropertyRenderer<Integer>();
  myEditor = new IntEditor(lowBoundary);
}
项目:intellij-ce-playground    文件:AbstractIntProperty.java   
protected AbstractIntProperty(Property parent, @NotNull @NonNls String name, int defaultValue) {
  super(parent, name);
  myDefaultValue = defaultValue;
  myEditor = new IntEditor(defaultValue);
}
项目:tools-idea    文件:AbstractIntProperty.java   
protected AbstractIntProperty(Property parent, @NotNull @NonNls String name, int defaultValue) {
  super(parent, name);
  myDefaultValue = defaultValue;
  myEditor = new IntEditor(defaultValue);
}
项目:consulo-ui-designer    文件:AbstractIntProperty.java   
protected AbstractIntProperty(Property parent, @NotNull @NonNls String name, int defaultValue) {
  super(parent, name);
  myDefaultValue = defaultValue;
  myEditor = new IntEditor(defaultValue);
}