Class DateFormField
A Date Form Field is a
FormField
used to store Dates.- 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.FormField
FormField.FormFieldBuilder<Type>
-
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprivate
DateFormField
(String key, Date 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, int minYear, int maxYear) Creates a new DateFormField with the given parameters. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Creates theJComponent
to be used for this field.int
int
getValue
(JComponent component) Takes in theJComponent
for this field and grabs the data off of it, returning it in the proper format for the field to be repopulated on the form.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
-
Field Details
-
minYear
private final int minYearThe minimum year to allow on this field -
maxYear
private final int maxYearThe maximum year to allow on this field
-
-
Constructor Details
-
DateFormField
private DateFormField(String key, Date 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, int minYear, int maxYear) Creates a new DateFormField 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 fieldminYear
- The minimum year to allow on this fieldmaxYear
- The maximum year to allow on this field
-
-
Method Details
-
builder
- Returns:
- A new
DateFormField.DateFormFieldBuilder
to use to make aDateFormField
-
getMinYear
public int getMinYear()- Returns:
- The minimum year to allow on this field
-
getMaxYear
public int getMaxYear()- Returns:
- The maximum year to allow on this field
-
getComponent
Creates theJComponent
to be used for this field.- Specified by:
getComponent
in classFormField<Date>
- Returns:
- A newly created
JComponent
to use on the form - Throws:
Throwable
- If anything goes wrong setting up the Component
-
getValue
Takes in theJComponent
for this field and grabs the data off of it, returning it in the proper format for the field to be repopulated on the form.- Specified by:
getValue
in classFormField<Date>
- Parameters:
component
- TheJComponent
associated with this field- Returns:
- The data extracted from the
JComponent
-