Package VASSAL.build.module
Class RandomTextButton
java.lang.Object
VASSAL.build.AbstractBuildable
VASSAL.build.AbstractConfigurable
VASSAL.build.module.DiceButton
VASSAL.build.module.RandomTextButton
- All Implemented Interfaces:
AutoConfigurable,Buildable,Configurable,PropertyNameSource,ValidityChecker,Translatable
public class RandomTextButton extends DiceButton
- Author:
- Michael Blumoehr This component places a button into the controls window toolbar. Pressing the button generates random numbers or strings and displays the result in the Chatter
-
Nested Class Summary
Nested classes/interfaces inherited from class VASSAL.build.module.DiceButton
DiceButton.IconConfig, DiceButton.ReportFormatConfigNested classes/interfaces inherited from interface VASSAL.build.AutoConfigurable
AutoConfigurable.Util -
Field Summary
Fields Modifier and Type Field Description static StringFACESprotected booleanisNumericprotected String[]m_facesstatic StringNUMERICFields inherited from class VASSAL.build.module.DiceButton
ADD_TO_TOTAL, addToTotal, BUTTON_TEXT, DEPRECATED_NAME, HOTKEY, ICON, launch, N_DICE, N_SIDES, NAME, nDice, nSides, plus, PLUS, PROMPT_ALWAYS, promptAlways, property, ran, REPORT_FORMAT, REPORT_NAME, REPORT_TOTAL, reportFormat, reportTotal, RESULT, SORT_DICE_RESULTS, sortDice, tooltip, TOOLTIPFields inherited from class VASSAL.build.AbstractConfigurable
changeSupport, config, localizedName, myI18nData, name -
Constructor Summary
Constructors Constructor Description RandomTextButton() -
Method Summary
Modifier and Type Method Description protected voidDR()Forwards the result of the roll to theChatter.send(java.lang.String)method of theChatterof theGameModule.String[]getAttributeDescriptions()Return an array of Strings describing the attributes of this object.String[]getAttributeNames()The additional Attributes of a RandomTextButton are:FACESText of the dice faces must be integer if USE_FACES=NUMERICNUMERICIf true, then face text must be an integer, and reportTotal is enabledClass<?>[]getAttributeTypes()Return the Class for the attributes of this object.StringgetAttributeValueString(String key)Return a String representation of the attribute with the given name.VisibilityConditiongetAttributeVisibility(String name)By default, all attributes are visiblestatic StringgetConfigureTypeName()HelpFilegetHelpFile()voidsetAttribute(String key, Object value)Sets an attribute value for this component.Methods inherited from class VASSAL.build.module.DiceButton
addTo, formatResult, getAllowableConfigureComponents, getComponent, getPropertyNames, getReportPrefix, getReportSuffix, initLaunchButton, removeFromMethods inherited from class VASSAL.build.AbstractConfigurable
add, addPropertyChangeListener, getConfigureComponents, getConfigureName, getConfigurer, getI18nData, getI18nPrefix, getLocalizedConfigureName, remove, removePropertyChangeListener, setAllAttributesUntranslatable, setAttributeTranslatable, setConfigureNameMethods inherited from class VASSAL.build.AbstractBuildable
build, getAllDescendantComponents, getAllDescendantComponentsOf, getBuildables, getBuildComponents, getBuildElement, getComponents, getComponentsOf, validate
-
Field Details
-
m_faces
-
isNumeric
protected boolean isNumeric -
FACES
- See Also:
- Constant Field Values
-
NUMERIC
- See Also:
- Constant Field Values
-
-
Constructor Details
-
RandomTextButton
public RandomTextButton()
-
-
Method Details
-
getConfigureTypeName
-
DR
protected void DR()Forwards the result of the roll to theChatter.send(java.lang.String)method of theChatterof theGameModule. Format is prefix+[comma-separated roll list]+suffix- Overrides:
DRin classDiceButton
-
getAttributeVisibility
Description copied from class:AbstractConfigurableBy default, all attributes are visible- Specified by:
getAttributeVisibilityin interfaceAutoConfigurable- Overrides:
getAttributeVisibilityin classDiceButton- Returns:
- null if the attribute controls should always be visible;
-
getAttributeNames
The additional Attributes of a RandomTextButton are:FACESText of the dice faces must be integer if USE_FACES=NUMERICNUMERICIf true, then face text must be an integer, and reportTotal is enabled- Specified by:
getAttributeNamesin interfaceAutoConfigurable- Overrides:
getAttributeNamesin classDiceButton- Returns:
- a list of all attribute names for this component
-
getAttributeDescriptions
Description copied from class:AbstractConfigurableReturn an array of Strings describing the attributes of this object. These strings are used as prompts in the Properties window for this object. The order of descriptions should be the same as the order of names inAbstractBuildable.getAttributeNames()- Specified by:
getAttributeDescriptionsin interfaceAutoConfigurable- Overrides:
getAttributeDescriptionsin classDiceButton
-
getAttributeTypes
Description copied from class:AbstractConfigurableReturn the Class for the attributes of this object. Valid classes are: String, Integer, Double, Boolean, Image, Color, and KeyStroke The order of classes should be the same as the order of names inAbstractBuildable.getAttributeNames()- Specified by:
getAttributeTypesin interfaceAutoConfigurable- Overrides:
getAttributeTypesin classDiceButton
-
setAttribute
Description copied from class:AbstractBuildableSets an attribute value for this component. Thekeyparameter will be one of those listed inAbstractBuildable.getAttributeNames(). If thevalueparameter is a String, it will be the value returned byAbstractBuildable.getAttributeValueString(java.lang.String)for the samekey. If the implementing class extendsAbstractConfigurable, thenvaluewill be an instance of the corresponding Class listed inAbstractConfigurable.getAttributeTypes()- Specified by:
setAttributein interfaceAutoConfigurable- Specified by:
setAttributein interfaceTranslatable- Overrides:
setAttributein classDiceButton- Parameters:
key- the name of the attribute. Will be one of those listed inAbstractBuildable.getAttributeNames()
-
getAttributeValueString
Description copied from class:AbstractBuildableReturn a String representation of the attribute with the given name. When initializing a module, this String value will be passed toAbstractBuildable.setAttribute(java.lang.String, java.lang.Object).- Specified by:
getAttributeValueStringin interfaceAutoConfigurable- Specified by:
getAttributeValueStringin interfaceTranslatable- Overrides:
getAttributeValueStringin classDiceButton- Parameters:
key- the name of the attribute. Will be one of those listed inAbstractBuildable.getAttributeNames()
-
getHelpFile
- Specified by:
getHelpFilein interfaceConfigurable- Overrides:
getHelpFilein classDiceButton- Returns:
- a HelpFilte describing how to use and configure this component
-