Class DoubleFormField
java.lang.Object
com.github.tadukoo.view.form.field.FormField<Type>
com.github.tadukoo.view.form.field.number.NumberFormField<Double>
com.github.tadukoo.view.form.field.number.DoubleFormField
A Double Form Field is a
FormField
used to store doubles.- Since:
- Alpha v.0.2.1
- Version:
- Alpha v.0.3
- Author:
- Logan Ferree (Tadukoo)
-
Nested Class Summary
Nested classes/interfaces inherited from class com.github.tadukoo.view.form.field.number.NumberFormField
NumberFormField.NumberFormFieldBuilder<Type extends Number & Comparable<?>>
Nested classes/interfaces inherited from class com.github.tadukoo.view.form.field.FormField
FormField.FormFieldBuilder<Type>
-
Constructor Summary
ModifierConstructorDescriptionprivate
DoubleFormField
(String key, Double defaultValue, LabelType labelType, SizablePaint labelForegroundPaint, SizablePaint labelBackgroundPaint, FontFamily labelFontFamily, int labelFontStyle, int labelFontSize, ShapeInfo labelShape, Border labelBorder, int rowPos, int colPos, int rowSpan, int colSpan, boolean logFontResourceLoaderWarnings, com.github.tadukoo.util.logger.EasyLogger logger, GraphicsEnvironment graphEnv, String fontFolder, FontResourceLoader fontResourceLoader, Double minValue, Double maxValue, Double stepSize) Creates a new DoubleFormField with the given parameters. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
protected Double
convertToType
(Number number) Used inNumberFormField.getValue(JComponent)
to convert theNumber
from theJSpinner
into the type used in this particular FormField.Methods inherited from class com.github.tadukoo.view.form.field.number.NumberFormField
getComponent, getMaxValue, getMinValue, getStepSize, getValue
Methods inherited from class com.github.tadukoo.view.form.field.FormField
getColPos, getColSpan, getDefaultValue, getFontFolder, getFontResourceLoader, getGraphEnv, getKey, getLabelBackgroundPaint, getLabelBorder, getLabelFontFamily, getLabelFontSize, getLabelFontStyle, getLabelForegroundPaint, getLabelShape, getLabelType, getLogger, getRowPos, getRowSpan, getType, logFontResourceLoaderWarnings
-
Constructor Details
-
DoubleFormField
private DoubleFormField(String key, Double defaultValue, LabelType labelType, SizablePaint labelForegroundPaint, SizablePaint labelBackgroundPaint, FontFamily labelFontFamily, int labelFontStyle, int labelFontSize, ShapeInfo labelShape, Border labelBorder, int rowPos, int colPos, int rowSpan, int colSpan, boolean logFontResourceLoaderWarnings, com.github.tadukoo.util.logger.EasyLogger logger, GraphicsEnvironment graphEnv, String fontFolder, FontResourceLoader fontResourceLoader, Double minValue, Double maxValue, Double stepSize) Creates a new DoubleFormField with the given parameters.- Parameters:
key
- The name of this field (used as a key inForms
)defaultValue
- The starting value of the fieldlabelType
- TheLabelType
to use for this fieldlabelForegroundPaint
- TheSizablePaint
for the foreground of the LabellabelBackgroundPaint
- TheSizablePaint
for the background of the LabellabelFontFamily
- TheFontFamily
for the Label's fontlabelFontStyle
- The font style for the LabellabelFontSize
- The font size for the LabellabelShape
- TheShapeInfo
to use for the LabellabelBorder
- TheBorder
to use for the LabelrowPos
- The row position of this fieldcolPos
- The column position of this fieldrowSpan
- The row span of this fieldcolSpan
- The column span of this fieldlogFontResourceLoaderWarnings
- Whether to log warnings generated by the FontResourceLoader - can be ignored if you specify your own FontResourceLoaderlogger
- AnEasyLogger
that will be sent to the FontResourceLoader by default - can be ignored if you specify your own FontResourceLoadergraphEnv
- TheGraphicsEnvironment
to load a font to in the FontResourceLoader - can be ignored if you specify your own FontResourceLoaderfontFolder
- The path to the fonts folder to find font files in if needed in the FontResourceLoader - can be ignored if you specify your own FontResourceLoaderfontResourceLoader
- TheFontResourceLoader
to use for fonts on this fieldminValue
- The minimum value allowed for this fieldmaxValue
- The maximum value allowed for this fieldstepSize
- The increment value for the spinner for this field
-
-
Method Details
-
builder
- Returns:
- A new
DoubleFormField.DoubleFormFieldBuilder
to use to make aDoubleFormField
-
convertToType
Used inNumberFormField.getValue(JComponent)
to convert theNumber
from theJSpinner
into the type used in this particular FormField.- Specified by:
convertToType
in classNumberFormField<Double>
- Parameters:
number
- TheNumber
we got from theJSpinner
- Returns:
- The number in its proper Type
-