Class DropDownFormField
java.lang.Object
com.github.tadukoo.view.form.field.FormField<String>
com.github.tadukoo.view.form.field.DropDownFormField
Drop Down Form Field is a
FormField used for drop-down menus.- Since:
- Alpha v.0.2
- Version:
- Alpha v.0.3
- Author:
- Logan Ferree (Tadukoo)
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class com.github.tadukoo.view.form.field.FormField
FormField.FormFieldBuilder<Type> -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateDropDownFormField(String key, String 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, boolean editable, String[] options) Creates a new DropDownFormField with the given parameters. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates theJComponentto be used for this field.String[]getValue(JComponent component) Takes in theJComponentfor this field and grabs the data off of it, returning it in the proper format for the field to be repopulated on the form.booleanMethods 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
-
editable
private final boolean editableWhether this field can be edited or not -
options
The options to include in the drop-down list
-
-
Constructor Details
-
DropDownFormField
private DropDownFormField(String key, String 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, boolean editable, String[] options) Creates a new DropDownFormField with the given parameters.- Parameters:
key- The name of this field (used as a key inForms)defaultValue- The starting value of the fieldlabelType- TheLabelTypeto use for this fieldlabelForegroundPaint- TheSizablePaintfor the foreground of the LabellabelBackgroundPaint- TheSizablePaintfor the background of the LabellabelFontFamily- TheFontFamilyfor the Label's fontlabelFontStyle- The font style for the LabellabelFontSize- The font size for the LabellabelShape- TheShapeInfoto use for the LabellabelBorder- TheBorderto 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- AnEasyLoggerthat will be sent to the FontResourceLoader by default - can be ignored if you specify your own FontResourceLoadergraphEnv- TheGraphicsEnvironmentto 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- TheFontResourceLoaderto use for fonts on this fieldeditable- Whether this field can be edited or notoptions- The options to include in the drop-down list
-
-
Method Details
-
builder
- Returns:
- A new
DropDownFormField.DropDownFormFieldBuilderto use to make aDropDownFormField
-
isEditable
public boolean isEditable()- Returns:
- Whether this field can be edited or not
-
getOptions
- Returns:
- The options to include in the drop-down list
-
getComponent
Creates theJComponentto be used for this field.- Specified by:
getComponentin classFormField<String>- Returns:
- A newly created
JComponentto use on the form
-
getValue
Takes in theJComponentfor 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:
getValuein classFormField<String>- Parameters:
component- TheJComponentassociated with this field- Returns:
- The data extracted from the
JComponent
-