Class DebugControls
java.lang.Object
VASSAL.search.AbstractImageFinder
VASSAL.build.AbstractBuildable
VASSAL.tools.DebugControls
- All Implemented Interfaces:
ActionListener
,EventListener
,Buildable
,PropertyNameSource
,ValidityChecker
,Auditable
,ImageSearchTarget
-
Field Summary
Modifier and TypeFieldDescriptionprotected JPanel
protected JLabel
protected Point
protected Point
protected JButton
protected static final long
protected JLabel
protected JLabel
protected FlowLabel
protected SplitPane
protected Timer
Fields inherited from class VASSAL.build.AbstractBuildable
buildComponents, validator
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
Adds this component to its parent.String[]
Lists all the buildFile (XML) attribute names for this component.boolean
void
setAttribute
(String name, Object value) Sets a buildFile (XML) attribute value for this component.static void
void
void
setCursorLocation
(Point pt, Map map) void
Methods inherited from class VASSAL.build.AbstractBuildable
add, addImageNamesRecursively, build, buildString, getAllDescendantComponentsOf, getAncestor, getBuildables, getBuildComponents, getBuildElement, getComponents, getComponentsOf, getNonFolderAncestor, getPropertyNames, setAncestor, validate
Methods inherited from class VASSAL.search.AbstractImageFinder
addLocalImageNames, getAllImageNames, getLocalImageNames
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface VASSAL.script.expression.Auditable
getComponentName, getComponentTypeName
Methods inherited from interface VASSAL.build.Buildable
isMandatory, isMovable, isUnique
-
Field Details
-
MEGABYTE
protected static final long MEGABYTE- See Also:
-
launch
-
controlPanel
-
splitPane
-
cursorLocation
-
cursorLocationBoard
-
cursorCoordsLabel
-
selectedNameLabel
-
selectedCoordsLabel
-
selectedCoordsBoardLabel
-
timer
-
-
Constructor Details
-
DebugControls
public DebugControls()
-
-
Method Details
-
getCursorLocation
-
setCursorLocation
-
setCursorLocation
-
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. -
actionPerformed
- Specified by:
actionPerformed
in interfaceActionListener
-
isVisible
public boolean isVisible() -
toggleVisible
public void toggleVisible() -
getControls
-
getAttributeNames
Description copied from class:AbstractBuildable
Lists all the buildFile (XML) attribute names for this component. If this component is ALSO anAbstractConfigurable
, then this list of attributes determines the appropriate attribute order forAbstractConfigurable.getAttributeDescriptions()
andAbstractConfigurable.getAttributeTypes()
.- Specified by:
getAttributeNames
in classAbstractBuildable
- Returns:
- a list of all buildFile (XML) attribute names for this component
-
setAttribute
Description copied from class:AbstractBuildable
Sets a buildFile (XML) attribute value for this component. Thekey
parameter will be one of those listed inAbstractBuildable.getAttributeNames()
. If thevalue
parameter is a String, it will be the value returned byAbstractBuildable.getAttributeValueString(java.lang.String)
for the samekey
. If the implementing class extendsAbstractConfigurable
, thenvalue
will be an instance of the corresponding Class listed inAbstractConfigurable.getAttributeTypes()
- Specified by:
setAttribute
in classAbstractBuildable
- Parameters:
name
- the name of the attribute. Will be one of those listed inAbstractBuildable.getAttributeNames()
value
- If thevalue
parameter is a String, it will be the value returned byAbstractBuildable.getAttributeValueString(java.lang.String)
for the samekey
. If the implementing class extendsAbstractConfigurable
, thenvalue
can also be an instance of the corresponding Class listed inAbstractConfigurable.getAttributeTypes()
-
getAttributeValueString
- Specified by:
getAttributeValueString
in classAbstractBuildable
- Parameters:
name
- the name of the attribute. Will be one of those listed inAbstractBuildable.getAttributeNames()
- Returns:
- a String representation of the XML buildFile attribute with the given name. When initializing a module,
this String value will loaded from the XML and passed to
AbstractBuildable.setAttribute(java.lang.String, java.lang.Object)
. It is also frequently used for checking the current value of an attribute.