Package VASSAL.build.module
Class ExtensionElement
java.lang.Object
VASSAL.build.module.ExtensionElement
- All Implemented Interfaces:
Buildable
,ImageSearchTarget
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a child component.void
Adds all images used by this component AND any children to the collectionvoid
Implementing classes should add the names of any image files they use to the collection.void
Adds this component to its parent.void
Build the object from the XML representation of the BuildablegetBuildElement
(Document doc) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface VASSAL.build.Buildable
isMandatory, isMovable, isUnique
-
Field Details
-
TARGET
-
-
Constructor Details
-
ExtensionElement
public ExtensionElement() -
ExtensionElement
-
-
Method Details
-
add
Description copied from interface:Buildable
Adds a child component. Both this method andBuildable.addTo(VASSAL.build.Buildable)
are invoked when adding a child to a parent -
build
-
getExtension
-
getTargetPath
-
getBuildElement
- Specified by:
getBuildElement
in interfaceBuildable
- Parameters:
doc
- XML file- Returns:
- an XML element from which this component can be built
-
addTo
Description copied from interface:Buildable
Adds this component to its parent. In order to make Buildable objects extensible, the child is responsible for adding itself to the parent. That way, Buildable subcomponents can be defined in an extension package without needing to modify the containing class. -
getAllImageNames
- Specified by:
getAllImageNames
in interfaceImageSearchTarget
- Returns:
- names of all images used by the component and any children
-
addImageNamesRecursively
Description copied from interface:ImageSearchTarget
Adds all images used by this component AND any children to the collection- Specified by:
addImageNamesRecursively
in interfaceImageSearchTarget
- Parameters:
s
- Collection to add image names to
-
getLocalImageNames
- Specified by:
getLocalImageNames
in interfaceImageSearchTarget
- Returns:
- names of all images used by this item
-
addLocalImageNames
Description copied from interface:ImageSearchTarget
Implementing classes should add the names of any image files they use to the collection.- Specified by:
addLocalImageNames
in interfaceImageSearchTarget
- Parameters:
s
- Collection to add image names to
-