Uses of Interface
VASSAL.build.Buildable
| Package | Description |
|---|---|
| VASSAL.build |
Provides classes for building Java instances automatically from XML
files.
|
| VASSAL.build.module |
Contains classes that may be added to a
GameModule. |
| VASSAL.build.module.chessclockcontrol | |
| VASSAL.build.module.documentation |
Contains classes that may be added to a
Documentation. |
| VASSAL.build.module.gamepieceimage | |
| VASSAL.build.module.map |
Contains classes that may be added to a
Map. |
| VASSAL.build.module.map.boardPicker |
Contains classes that may be added to a
BoardPicker. |
| VASSAL.build.module.map.boardPicker.board |
Contains classes that may be added to a
Board. |
| VASSAL.build.module.map.boardPicker.board.mapgrid |
Contains classes that may be added to a
MapGrid. |
| VASSAL.build.module.properties | |
| VASSAL.build.module.turn | |
| VASSAL.build.widget |
Contains classes that can be added to a
Widget. |
| VASSAL.chat |
Contains classes for specifying a VASSAL server implementation that follows a chat-room paradigm.
|
| VASSAL.chat.ui | |
| VASSAL.configure |
Provides classes for building "Edit Property" dialogs, and for editing
GameModule's and ModuleExtension's. |
| VASSAL.i18n | |
| VASSAL.launch | |
| VASSAL.preferences |
Provides support for specifying and saving preferences.
|
| VASSAL.script | |
| VASSAL.tools |
Contains various utility classes.
|
| VASSAL.tools.icon | |
| VASSAL.tools.imports |
-
Uses of Buildable in VASSAL.build
Subinterfaces of Buildable in VASSAL.build Modifier and Type Interface Description interfaceAutoConfigurableA class that implements AutoConfigurable can use theAutoConfigurerclass to automatically build a property editor.interfaceConfigurableAn object that implements the Configurable interface, in addition to being built from a configuration XML file (because this class ultimately extendsBuildable, can be manipulated by the user directly in the VASSAL module editor via the Configuration window.Classes in VASSAL.build that implement Buildable Modifier and Type Class Description classAbstractBuildableAbstract implementation of theBuildableinterface.classAbstractConfigurableAn abstract implementation of theConfigurableinterface.classAbstractToolbarItemCreates an item that is both configurable w/ an edit boxAbstractConfigurableand buildable from the XML buildFileAbstractBuildable, but which also has a Toolbar launch button.classGameModuleThe GameModule class is the base class for a VASSAL module.classWidgetA general-purpose configurable GUI container Widgets areConfigurableobjects that represent AWT components.Fields in VASSAL.build with type parameters of type Buildable Modifier and Type Field Description protected List<Buildable>AbstractBuildable. buildComponentsMethods in VASSAL.build that return Buildable Modifier and Type Method Description static BuildableBuilder. create(Element e)Create an instance of a class from an XML element and build it.Methods in VASSAL.build that return types with arguments of type Buildable Modifier and Type Method Description List<Buildable>AbstractBuildable. getBuildables()Enumeration<Buildable>AbstractBuildable. getBuildComponents()Deprecated, for removal: This API element is subject to removal in a future version.Methods in VASSAL.build with parameters of type Buildable Modifier and Type Method Description voidAbstractBuildable. add(Buildable b)Add a Buildable object to this objectvoidAbstractConfigurable. add(Buildable b)Set the owning translatable of this componentvoidBuildable. add(Buildable child)Adds a child component.voidAbstractToolbarItem. addTo(Buildable parent)Default behavior adds the button to the module toolbar.voidBuildable. addTo(Buildable parent)Adds this component to its parent.voidGameModule. addTo(Buildable b)Game Module is normally at the root of the hierarchy, so it doesn't expect to get added to anything.voidWidget. addTo(Buildable b)static voidBuilder. build(Element e, Buildable parent)General building algorithm.voidAbstractConfigurable. remove(Buildable b)Remove a Buildable object from this objectvoidConfigurable. remove(Buildable child)Remove a child componentvoidAbstractToolbarItem. removeFrom(Buildable b)Default behavior assumes we are removing this from the module toolbarvoidConfigurable. removeFrom(Buildable parent)Remove this component from its parentvoidGameModule. removeFrom(Buildable parent)Since we aren't expecting to beGameModule.addTo(VASSAL.build.Buildable)'ed to a parent, we likewise don't need to do much about being "removeFrom'ed" one.voidWidget. removeFrom(Buildable b)voidAbstractBuildable. validate(Buildable target, ValidationReport report) -
Uses of Buildable in VASSAL.build.module
Classes in VASSAL.build.module that implement Buildable Modifier and Type Class Description classBasicCommandEncoderAlthough it is theCommandEncoderwhich handles the basic commands:AddPiece,RemovePiece,ChangePiece,MovePiece, this class is most commonly needed by module designers who want to make custom "Traits" for game pieces because it containsBasicCommandEncoder.createDecorator(java.lang.String, VASSAL.counters.GamePiece), theBasicCommandEncoder.DecoratorFactoryfor Traits, which are usually internally referred to as Decorators because they are implemented using the Decorator Pattern.classBasicLoggerBasicLogger deals with VLOG Vassal Log files (i.e.classChartWindowA top-level Widget for displaying ChartsclassChatterThe chat window component.classChessClockControlCHESS CLOCK CONTROLLER for VASSAL.classConnectionWindowThis is now a dummy classclassDiceButtonThis component places a button into the controls window toolbar.classDieManagerclassDoActionButtonThis component places a button into the controls window toolbar.classDocumentationRepresents theHelpmenu of the controls windowclassEventLogclassExtensionElementclassGlobalKeyCommandThis version ofMassKeyCommandis added directly to aGameModuleand applies to all maps.classGlobalOptionsGlobalOptions is a junction point for several flavors of "preferences"-related categories.classInternetDiceButtonThis component places a button into the controls window toolbar.classInventoryclassKeyNamerTranslates key codes into human-readable strings (e.g.classMapThe Map is the main component for displaying and containingGamePieces during play.classModuleExtensionAn optional extension to a GameModule Like a GameModule, it is built from scratch from a 'buildFile' in a DataArchive The components described in the buildFile are appended to components in the base DataArchiveclassModulePluginA ModulePlugin is basically identical to a ModuleExtension except that is loaded earlier and must throw Plugin specific error messagesclassMultiActionButtonCombines multiple buttons from the toolbar into a single button.classNotesWindowThis is aGameComponentthat allows players to type and save text notes during a game.classPieceWindowA window from which players can create newGamePieces by clicking and dragging from the PieceWindow.classPlayerHandclassPlayerRosterMaintains a list of players involved in the current gameclassPluginPlugin is a general purpose component for use by Module Plugins that require some sort of initialisation.classPredefinedSetupDefines a saved game that is accessible from the File menu.classPrivateMapA Map that may be configured to be visible only a particular side.classPrototypeDefinitionclassPrototypesContainerContainer for definitions of Game Piece prototypes.classRandomTextButtonclassSpecialDiceButton...classSpecialDieclassSpecialDieFaceclassStartupGlobalKeyCommandA Global Key Command that is automatically invoked on game start-up, once the various Key Listeners have been started.classToolbarMenuTakes buttons from the toolbar of a Map or the main module and places them into a popup menuMethods in VASSAL.build.module that return Buildable Modifier and Type Method Description BuildableExtensionElement. getExtension()Methods in VASSAL.build.module with parameters of type Buildable Modifier and Type Method Description voidBasicCommandEncoder. add(Buildable b)Adds a buildable subcomponent.voidBasicLogger. add(Buildable b)voidChartWindow. add(Buildable b)voidChatter. add(Buildable b)voidExtensionElement. add(Buildable child)voidInventory. add(Buildable b)voidKeyNamer. add(Buildable b)voidPieceWindow. add(Buildable b)voidPlayerRoster. add(Buildable child)voidPrototypeDefinition. add(Buildable child)voidPrototypesContainer. add(Buildable b)voidBasicCommandEncoder. addTo(Buildable parent)Adds this BasicCommandEncoder to its parent, which should be theGameModule.voidBasicLogger. addTo(Buildable b)Expects to be added to aGameModule.voidChartWindow. addTo(Buildable b)Expects to be added to a GameModule.voidChatter. addTo(Buildable b)Expects to be added to a GameModule.voidChessClockControl. addTo(Buildable parent)Registers us with the game module, tool bar, command encoder, etc.voidConnectionWindow. addTo(Buildable b)voidDiceButton. addTo(Buildable parent)Expects to be added to a GameModule.voidDieManager. addTo(Buildable parent)voidDocumentation. addTo(Buildable b)voidEventLog. addTo(Buildable b)voidExtensionElement. addTo(Buildable parent)voidGlobalOptions. addTo(Buildable parent)GlobalOptions are added to theGameModule.voidInternetDiceButton. addTo(Buildable parent)Expects to be added to the DieManager.voidInventory. addTo(Buildable b)voidKeyNamer. addTo(Buildable b)voidMap. addTo(Buildable b)Registers this Map as a child of another buildable component, usually theGameModule.voidModuleExtension. addTo(Buildable parent)voidNotesWindow. addTo(Buildable b)Expects to be added to aGameModule.voidPieceWindow. addTo(Buildable parent)Expects to be added to aGameModule.voidPlayerRoster. addTo(Buildable b)voidPlugin. addTo(Buildable parent)voidPredefinedSetup. addTo(Buildable parent)voidPrototypeDefinition. addTo(Buildable parent)voidPrototypesContainer. addTo(Buildable parent)voidSpecialDiceButton. addTo(Buildable parent)Expects to be added to a SymbolDice.voidSpecialDie. addTo(Buildable parent)voidSpecialDieFace. addTo(Buildable parent)voidStartupGlobalKeyCommand. addTo(Buildable parent)voidToolbarMenu. addTo(Buildable parent)protected voidModuleExtension. checkGpIds(Buildable b, GpIdChecker checker)voidBasicLogger. remove(Buildable b)voidChartWindow. remove(Buildable b)voidInventory. remove(Buildable b)voidPieceWindow. remove(Buildable b)voidPlayerRoster. remove(Buildable child)voidPrototypeDefinition. remove(Buildable child)voidChartWindow. removeFrom(Buildable b)voidChessClockControl. removeFrom(Buildable parent)Unregisters us from everything when shutting down.voidDieManager. removeFrom(Buildable parent)voidDocumentation. removeFrom(Buildable b)voidGlobalOptions. removeFrom(Buildable parent)Removes us from our parent componentvoidInternetDiceButton. removeFrom(Buildable b)voidInventory. removeFrom(Buildable b)voidMap. removeFrom(Buildable b)Unregisters this Map from itsBuildableparent (usually aGameModule), reversing the process ofMap.addTo(VASSAL.build.Buildable).voidModuleExtension. removeFrom(Buildable parent)voidNotesWindow. removeFrom(Buildable b)voidPieceWindow. removeFrom(Buildable parent)voidPlayerRoster. removeFrom(Buildable parent)voidPlugin. removeFrom(Buildable parent)voidPredefinedSetup. removeFrom(Buildable parent)voidPrototypeDefinition. removeFrom(Buildable parent)voidPrototypesContainer. removeFrom(Buildable parent)voidSpecialDiceButton. removeFrom(Buildable b)voidSpecialDie. removeFrom(Buildable parent)voidSpecialDieFace. removeFrom(Buildable parent)voidToolbarMenu. removeFrom(Buildable parent)protected voidModuleExtension. updateGpIds(Buildable b)voidPrototypeDefinition. validate(Buildable target, ValidationReport report)Method parameters in VASSAL.build.module with type arguments of type Buildable Modifier and Type Method Description voidPlugin. registerComponent(Class<? extends Buildable> parent, Class<? extends Buildable> child)Utility routine to register a new component with the module editor so that it appears in the right-click popup menu.Constructors in VASSAL.build.module with parameters of type Buildable Constructor Description ExtensionElement(Buildable extension, Configurable[] targetPath) -
Uses of Buildable in VASSAL.build.module.chessclockcontrol
Classes in VASSAL.build.module.chessclockcontrol that implement Buildable Modifier and Type Class Description classChessClockCHESS CLOCK class for VASSAL.Methods in VASSAL.build.module.chessclockcontrol with parameters of type Buildable Modifier and Type Method Description voidChessClock. addTo(Buildable parent)Registers us with game module, command encoder, and the Chess Clock Control.voidChessClock. removeFrom(Buildable parent)Unregisters us when we are shutting down -
Uses of Buildable in VASSAL.build.module.documentation
Classes in VASSAL.build.module.documentation that implement Buildable Modifier and Type Class Description classAboutScreenPlaces an entry in theHelpmenu.classBrowserHelpFileUnpacks a zipped directory stored in the module and displays it in an external browser window.protected classBrowserHelpFile.ConfigSupportThe attributes we want to expose in the editor are not the same as the ones we want to save to the buildFile, so we use this object to specify the properties in the editor.classBrowserPDFFileEasier-to-use support for opening a single PDF file in the browser (it can be done with BrowserHelpFile, but requires a substantial workaround and weird confusing procedures)classHelpFilePlaces an entry in theHelpmenu.classTutorialProvides tutorial functionality by reading in a logfileMethods in VASSAL.build.module.documentation with parameters of type Buildable Modifier and Type Method Description voidBrowserHelpFile.ConfigSupport. add(Buildable child)voidAboutScreen. addTo(Buildable b)Expects to be added to aDocumentation.voidBrowserHelpFile. addTo(Buildable parent)voidBrowserHelpFile.ConfigSupport. addTo(Buildable parent)voidBrowserPDFFile. addTo(Buildable parent)voidHelpFile. addTo(Buildable b)voidTutorial. addTo(Buildable parent)voidBrowserHelpFile.ConfigSupport. remove(Buildable child)voidBrowserHelpFile. remove(Buildable child)voidBrowserPDFFile. remove(Buildable child)voidAboutScreen. removeFrom(Buildable b)voidBrowserHelpFile.ConfigSupport. removeFrom(Buildable parent)voidBrowserHelpFile. removeFrom(Buildable parent)voidBrowserPDFFile. removeFrom(Buildable parent)voidHelpFile. removeFrom(Buildable b)voidTutorial. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.build.module.gamepieceimage
Classes in VASSAL.build.module.gamepieceimage that implement Buildable Modifier and Type Class Description classColorManagerContainer for definitions of Generic Color DefinitionsclassColorSwatchClass that implements a named Color SwatchclassFontManagerContainer for definitions of Generic Color DefinitionsclassFontStyleClass that implements a names Font SwatchclassGamePieceImageclassGamePieceImageDefinitionsContainer for definitions of Generic Counter Definitions.classGamePieceLayoutclassGamePieceLayoutsContainerContainer for definitions of Generic Counter Definitions.classImageItemclassImageItemInstanceclassItemThe base portion of a Counter Layout component.classItemInstanceIndividual override parameters for an instance of anItem.classShapeItemclassShapeItemInstanceclassSymbolItemclassSymbolItemInstanceclassTextBoxItemclassTextBoxItemInstanceclassTextItemclassTextItemInstanceMethods in VASSAL.build.module.gamepieceimage with parameters of type Buildable Modifier and Type Method Description voidColorManager. add(Buildable b)voidFontManager. add(Buildable b)voidGamePieceImageDefinitions. add(Buildable b)voidGamePieceLayoutsContainer. add(Buildable b)voidColorManager. addTo(Buildable parent)voidColorSwatch. addTo(Buildable parent)voidFontManager. addTo(Buildable parent)voidFontStyle. addTo(Buildable parent)voidGamePieceImage. addTo(Buildable parent)voidGamePieceImageDefinitions. addTo(Buildable parent)voidGamePieceLayout. addTo(Buildable parent)voidGamePieceLayoutsContainer. addTo(Buildable parent)voidItem. addTo(Buildable parent)voidItemInstance. addTo(Buildable parent)voidColorManager. remove(Buildable b)voidFontManager. remove(Buildable b)voidGamePieceImageDefinitions. remove(Buildable b)voidGamePieceLayoutsContainer. remove(Buildable b)voidColorManager. removeFrom(Buildable parent)voidColorSwatch. removeFrom(Buildable parent)voidFontManager. removeFrom(Buildable parent)voidFontStyle. removeFrom(Buildable parent)voidGamePieceImage. removeFrom(Buildable parent)voidGamePieceImageDefinitions. removeFrom(Buildable parent)voidGamePieceLayout. removeFrom(Buildable parent)voidGamePieceLayoutsContainer. removeFrom(Buildable parent)voidItem. removeFrom(Buildable parent)voidItemInstance. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.build.module.map
Classes in VASSAL.build.module.map that implement Buildable Modifier and Type Class Description classBoardPickerclassCounterDetailViewerThis is aDrawableclass that draws the counters horizontally when the mouse is held over a stack with the control key down.classDeckGlobalKeyCommandThis version ofMassKeyCommandis added to aDrawPile(which holds aDeck) and applies to pieces/cards currently in the deck.classDrawPileclassFlareAllows a player to ping a location ("send up a flare") by clicking on a map with the correct modifier key combination held down (default: Alt+LeftClick).classForwardToChatterclassForwardToKeyBufferclassGlobalMapThis is scaled version of aMapthat gives an overview.protected classGlobalMap.CounterViewerclassHandMetricsHandles the drawing of cards in aPlayerHand.classHidePiecesButtonThis removes all game pieces from the (@link Map) therefore providing an un-cluttered view.classHighlightLastMovedclassImageSaverThis allows the user to capture a snapshot of the entire map into a PNG file.classKeyBuffererSelects and unselects pieces on the map, using the mouse.classLayerControlAdds a button to the toolbar to manipulate Game Piece LayersclassLayeredPieceCollectionThe optional "Game Piece Layers" component of a Map which allows pieces on the map to be assigned to an arbitrary number of visual layers according to a property setting.classLOS_ThreadA class that allows the user to draw a straight line on a Map (LOS = Line Of Sight).classMapCentererCenters the map when user right-clicks on an empty hexclassMapShaderDraw shaded regions on a map.classMassKeyCommandAdds a button to a map window toolbar.classMenuDisplayerclassPieceMoverPieceMover handles the "Drag and Drop" of pieces and stacks, onto or within a Map window.classPieceRecentererAdds a button to a Maps toolbar that adjusts the positions of all pieces so that their centroid is at the center of the mapclassScrollerThis component listens to key events on a Map window and scrolls the map.classSelectionHighlighterclassSelectionHighlightersclassSetupStackThis is the "At-Start Stack" component, which initializes a Map or Board with a specified stack.classStackExpanderclassStackMetricsStackMetrics provides the [Stacking options] component of aMap.classTextSaverclassZoomerControls the zooming in/out of aMapwindow.Methods in VASSAL.build.module.map with parameters of type Buildable Modifier and Type Method Description voidBoardPicker. add(Buildable b)Add a board to the list of those available for the user to choose fromvoidForwardToChatter. add(Buildable b)voidForwardToKeyBuffer. add(Buildable b)voidGlobalMap. add(Buildable b)voidHidePiecesButton. add(Buildable b)voidKeyBufferer. add(Buildable b)voidMenuDisplayer. add(Buildable b)voidScroller. add(Buildable b)voidSetupStack. add(Buildable child)voidStackExpander. add(Buildable b)voidBoardPicker. addTo(Buildable b)voidCounterDetailViewer. addTo(Buildable b)voidDeckGlobalKeyCommand. addTo(Buildable parent)voidDrawPile. addTo(Buildable parent)voidFlare. addTo(Buildable parent)Adds this component to a Buildable component.voidForwardToChatter. addTo(Buildable parent)voidForwardToKeyBuffer. addTo(Buildable parent)voidGlobalMap. addTo(Buildable b)Expects to be added to aMap.voidHidePiecesButton. addTo(Buildable b)Expects to be added to aMap.voidHighlightLastMoved. addTo(Buildable parent)voidImageSaver. addTo(Buildable b)Expects to be added to aMap.voidKeyBufferer. addTo(Buildable b)Adds us to our parent map - we register as a mouse listener and a drawable componentvoidLayerControl. addTo(Buildable parent)voidLayeredPieceCollection. addTo(Buildable parent)voidLOS_Thread. addTo(Buildable b)Expects to be added to aMap.voidMapCenterer. addTo(Buildable b)voidMapShader. addTo(Buildable parent)voidMassKeyCommand. addTo(Buildable parent)voidMenuDisplayer. addTo(Buildable b)voidPieceMover. addTo(Buildable b)Adds this component to its parent map.voidPieceRecenterer. addTo(Buildable parent)voidScroller. addTo(Buildable parent)voidSelectionHighlighter. addTo(Buildable parent)voidSelectionHighlighters. addTo(Buildable parent)voidSetupStack. addTo(Buildable parent)voidStackExpander. addTo(Buildable b)voidStackMetrics. addTo(Buildable b)voidTextSaver. addTo(Buildable b)voidZoomer. addTo(Buildable b)voidBoardPicker. remove(Buildable b)Remove a board from the list of those available for the user to choose fromvoidGlobalMap. remove(Buildable b)voidHidePiecesButton. remove(Buildable b)voidBoardPicker. removeFrom(Buildable parent)voidCounterDetailViewer. removeFrom(Buildable parent)voidDeckGlobalKeyCommand. removeFrom(Buildable parent)voidFlare. removeFrom(Buildable parent)Removes this component from a Buildable parent.voidGlobalMap. removeFrom(Buildable b)voidHidePiecesButton. removeFrom(Buildable b)voidHighlightLastMoved. removeFrom(Buildable parent)voidImageSaver. removeFrom(Buildable b)voidLayerControl. removeFrom(Buildable parent)voidLayeredPieceCollection. removeFrom(Buildable parent)voidLOS_Thread. removeFrom(Buildable b)voidMapShader. removeFrom(Buildable parent)voidMassKeyCommand. removeFrom(Buildable parent)voidPieceRecenterer. removeFrom(Buildable parent)voidSelectionHighlighter. removeFrom(Buildable parent)voidSelectionHighlighters. removeFrom(Buildable parent)voidSetupStack. removeFrom(Buildable parent)voidStackMetrics. removeFrom(Buildable parent)voidTextSaver. removeFrom(Buildable b)voidZoomer. removeFrom(Buildable b)voidBoardPicker. validate(Buildable target, ValidationReport report)voidSetupStack. validate(Buildable target, ValidationReport report) -
Uses of Buildable in VASSAL.build.module.map.boardPicker
Classes in VASSAL.build.module.map.boardPicker that implement Buildable Modifier and Type Class Description classBoardMethods in VASSAL.build.module.map.boardPicker with parameters of type Buildable Modifier and Type Method Description voidBoard. addTo(Buildable b)voidBoard. removeFrom(Buildable b) -
Uses of Buildable in VASSAL.build.module.map.boardPicker.board
Classes in VASSAL.build.module.map.boardPicker.board that implement Buildable Modifier and Type Class Description classHexGridA Hexgrid is a map grid composed of hexes.classRegionclassRegionGridclassSquareGridclassZonedGridMethods in VASSAL.build.module.map.boardPicker.board with parameters of type Buildable Modifier and Type Method Description voidHexGrid. addTo(Buildable b)voidRegion. addTo(Buildable b)voidRegionGrid. addTo(Buildable b)voidSquareGrid. addTo(Buildable b)voidZonedGrid. addTo(Buildable parent)voidHexGrid. removeFrom(Buildable b)voidRegion. removeFrom(Buildable b)voidRegionGrid. removeFrom(Buildable b)voidSquareGrid. removeFrom(Buildable b)voidZonedGrid. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.build.module.map.boardPicker.board.mapgrid
Classes in VASSAL.build.module.map.boardPicker.board.mapgrid that implement Buildable Modifier and Type Class Description classHexGridNumberingclassRegularGridNumberingAbstract base class for grid numbering classes for hexagonal and rectangular gridsclassSquareGridNumberingclassZoneclassZonedGridHighlighterclassZoneHighlightA Class that defines a method of highlighting the a zone in a multi-zoned grid.Methods in VASSAL.build.module.map.boardPicker.board.mapgrid with parameters of type Buildable Modifier and Type Method Description voidHexGridNumbering. addTo(Buildable parent)voidSquareGridNumbering. addTo(Buildable parent)voidZone. addTo(Buildable b)voidZonedGridHighlighter. addTo(Buildable b)voidZoneHighlight. addTo(Buildable b)voidHexGridNumbering. removeFrom(Buildable parent)voidSquareGridNumbering. removeFrom(Buildable parent)voidZone. removeFrom(Buildable b)voidZonedGridHighlighter. removeFrom(Buildable b)voidZoneHighlight. removeFrom(Buildable b) -
Uses of Buildable in VASSAL.build.module.properties
Classes in VASSAL.build.module.properties that implement Buildable Modifier and Type Class Description classChangePropertyButtonAdds a toolbar button that changes the value of a global propertyclassGlobalPropertiesDummy component that acts as a simple container for GlobalProperty componentsclassGlobalPropertyAdds a global property to a Map or ModuleclassZonePropertyMethods in VASSAL.build.module.properties with parameters of type Buildable Modifier and Type Method Description voidChangePropertyButton. addTo(Buildable parent)voidGlobalProperties. addTo(Buildable parent)voidGlobalProperty. addTo(Buildable parent)voidZoneProperty. addTo(Buildable parent)voidChangePropertyButton. removeFrom(Buildable parent)voidGlobalProperties. removeFrom(Buildable parent)voidGlobalProperty. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.build.module.turn
Classes in VASSAL.build.module.turn that implement Buildable Modifier and Type Class Description classCounterTurnLevelclassListTurnLevelclassTurnComponentGeneric Turn ComponentclassTurnGlobalHotkeyclassTurnLevelclassTurnTrackerGeneric Turn CounterMethods in VASSAL.build.module.turn with parameters of type Buildable Modifier and Type Method Description voidTurnComponent. addTo(Buildable parent)voidTurnGlobalHotkey. addTo(Buildable parent)voidTurnLevel. addTo(Buildable parent)voidTurnTracker. addTo(Buildable b)voidTurnComponent. removeFrom(Buildable parent)voidTurnGlobalHotkey. removeFrom(Buildable parent)voidTurnLevel. removeFrom(Buildable parent)voidTurnTracker. removeFrom(Buildable b) -
Uses of Buildable in VASSAL.build.widget
Classes in VASSAL.build.widget that implement Buildable Modifier and Type Class Description classBoxWidgetclassCardSlotA CardSlot is identical to a PieceSlot except that it is initialized with a card-like GamePiece.classChartA Chart is used for displaying charts and tables for the module.classHtmlChartAn HtmlChart is used for displaying html information for the module.classListWidgetA Widget that corresponds to a panel with aJListsitting to the right of aJPanelwith aCardLayoutlayout.classMapWidgetclassPanelWidgetA Widget that corresponds to a JPanel with a GridLayout or BoxLayout layout.classPieceSlotA Component that displays a GamePiece.classTabWidgetA Widget that corresponds to a JTabbedPane.classWidgetMapFields in VASSAL.build.widget declared as Buildable Modifier and Type Field Description protected BuildableMapWidget. parentMethods in VASSAL.build.widget with parameters of type Buildable Modifier and Type Method Description voidBoxWidget. add(Buildable b)voidListWidget. add(Buildable b)voidMapWidget. add(Buildable b)voidPanelWidget. add(Buildable b)voidTabWidget. add(Buildable b)voidChart. addTo(Buildable parent)voidHtmlChart. addTo(Buildable parent)voidMapWidget. addTo(Buildable b)voidPieceSlot. addTo(Buildable par)voidBoxWidget. remove(Buildable b)voidListWidget. remove(Buildable b)voidMapWidget. remove(Buildable b)voidPanelWidget. remove(Buildable b)voidTabWidget. remove(Buildable b)voidChart. removeFrom(Buildable parent)voidHtmlChart. removeFrom(Buildable parent)voidPieceSlot. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.chat
Classes in VASSAL.chat that implement Buildable Modifier and Type Class Description classPrivateChatterA window for private messages between the user and another player; -
Uses of Buildable in VASSAL.chat.ui
Classes in VASSAL.chat.ui that implement Buildable Modifier and Type Class Description classChatServerControlsMethods in VASSAL.chat.ui with parameters of type Buildable Modifier and Type Method Description voidChatServerControls. addTo(Buildable b) -
Uses of Buildable in VASSAL.configure
Methods in VASSAL.configure that return types with arguments of type Buildable Modifier and Type Method Description Class<? extends Buildable>ConfigureTree.AdditionalComponent. getChild()Class<? extends Buildable>ConfigureTree.AdditionalComponent. getParent()Methods in VASSAL.configure with parameters of type Buildable Modifier and Type Method Description voidCompoundValidityChecker. validate(Buildable target, ValidationReport report)voidMandatoryComponent. validate(Buildable b, ValidationReport report)voidSingleChildInstance. validate(Buildable b, ValidationReport report)voidValidityChecker. validate(Buildable target, ValidationReport report)Method parameters in VASSAL.configure with type arguments of type Buildable Modifier and Type Method Description static voidConfigureTree. addAdditionalComponent(Class<? extends Buildable> parent, Class<? extends Buildable> child)Record additional available components to add to the popup menu.protected ActionConfigureTree. buildAddAction(Configurable target, Class<? extends Buildable> newConfig)protected ActionExtensionTree. buildAddAction(Configurable target, Class<? extends Buildable> newConfig)Constructor parameters in VASSAL.configure with type arguments of type Buildable Constructor Description AdditionalComponent(Class<? extends Buildable> p, Class<? extends Buildable> c)ChooseComponentDialog(Frame owner, Class<? extends Buildable> targetClass)ChooseComponentPathDialog(Frame owner, Class<? extends Buildable> targetClass) -
Uses of Buildable in VASSAL.i18n
Subinterfaces of Buildable in VASSAL.i18n Modifier and Type Interface Description interfaceTranslatableDefines VASSAL's standard interface for getting and setting XML (buildFile) attributes, as well as attendant i18n translatable field infrastructure.Classes in VASSAL.i18n that implement Buildable Modifier and Type Class Description classLanguageContainer for definitions of Translations.classLocalizationSingleton class for managing the translation of a module into other languagesclassTranslatableMarkerclassTranslationclassVassalTranslationUtility class to allow translation of VASSAL using the Component Translation mechanism.Methods in VASSAL.i18n with parameters of type Buildable Modifier and Type Method Description voidTranslatableMarker. add(Buildable child)voidLanguage. addTo(Buildable parent)voidTranslatableMarker. addTo(Buildable parent)voidTranslation. addTo(Buildable parent)voidLanguage. removeFrom(Buildable parent)voidTranslatableMarker. removeFrom(Buildable parent)voidTranslation. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.launch
Classes in VASSAL.launch that implement Buildable Modifier and Type Class Description classBasicModuleDeprecated, for removal: This API element is subject to removal in a future version. -
Uses of Buildable in VASSAL.preferences
Classes in VASSAL.preferences that implement Buildable Modifier and Type Class Description classBasicPreferenceBase class for a Module Preference.classBooleanPreferenceA Checkbox Module Preference.classDoublePreferenceA Decimal Number Module Preference.classEnumPreferenceA Drop-down list preference.classIntegerPreferenceA whole number Module Preference.classStringPreferenceA String Module Preference.classTextPreferenceA multi-line textbox Module Preference.Methods in VASSAL.preferences with parameters of type Buildable Modifier and Type Method Description voidBasicPreference. addTo(Buildable b)voidBasicPreference. removeFrom(Buildable b) -
Uses of Buildable in VASSAL.script
Classes in VASSAL.script that implement Buildable Modifier and Type Class Description classAbstractScriptclassActionScriptclassBshCommandEncoderUsed by the Bsh PluginclassBshPluginclassGeneralScriptclassScriptContainerContainer for Scripts.Methods in VASSAL.script with parameters of type Buildable Modifier and Type Method Description voidScriptContainer. add(Buildable b)voidActionScript. addTo(Buildable parent)voidGeneralScript. addTo(Buildable parent)voidScriptContainer. addTo(Buildable parent)voidActionScript. removeFrom(Buildable parent)voidGeneralScript. removeFrom(Buildable parent)voidScriptContainer. removeFrom(Buildable parent)voidActionScript. validate(Buildable target, ValidationReport report)voidGeneralScript. validate(Buildable target, ValidationReport report) -
Uses of Buildable in VASSAL.tools
Methods in VASSAL.tools with parameters of type Buildable Modifier and Type Method Description voidUniqueIdManager. validate(Buildable target, ValidationReport report)Ensures that no other instance of the same class has the same name -
Uses of Buildable in VASSAL.tools.icon
Classes in VASSAL.tools.icon that implement Buildable Modifier and Type Class Description classIconFamilyAn IconFamily is a named set of Icons in the four standard Tango sizes.Methods in VASSAL.tools.icon with parameters of type Buildable Modifier and Type Method Description voidIconFamily. addTo(Buildable parent)voidIconFamily. removeFrom(Buildable parent) -
Uses of Buildable in VASSAL.tools.imports
Methods in VASSAL.tools.imports with parameters of type Buildable Modifier and Type Method Description protected static voidImporter. insertComponent(Buildable child, Buildable parent)
AbstractBuildable.getBuildables()instead.