I'm creating a custom Java Struts tag that is for building and formatting an html select box in a standardised way (part of our usability guidelines).
Each select box has an additional/initial value which describes the requirement of the value returned by the select element, i.e.:
- Mandatory - with the label "Please Select"
- Optional - "None Selected"
- Select All - "Select All"
The custom tag will have a property that controls which of these are to be used.
So the problem is, I need to think of a variable name that can adequately explain that is is holding one of these three values!
I will be commenting the code in any case, but I'd prefer that co-workers didn't have to look up the source code to remember what the tag variable's purpose is.
Edit: To put some context around this problem, the usability strategy that I'm implementing here is that if there are more than 5 items that can be selected, the options should appear as a select box. 5 or less items will appear as radio buttons.
When radio buttons are being used, the mandatory label won't be displayed (form validation will complain if there's no value selected anyway).
