VASSAL.build.module
Class ConnectionWindow
java.lang.Object
|
+--VASSAL.build.AbstractBuildable
|
+--VASSAL.build.module.ConnectionWindow
- All Implemented Interfaces:
- Buildable
- public class ConnectionWindow
- extends AbstractBuildable
This is now a dummy class
|
Method Summary |
void |
addTo(Buildable b)
Adds this component to its parent. |
java.lang.String[] |
getAttributeNames()
|
java.lang.String |
getAttributeValueString(java.lang.String name)
Return a String representation of the attribute with the given name. |
void |
setAttribute(java.lang.String name,
java.lang.Object value)
Sets an attribute value for this component. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ConnectionWindow
public ConnectionWindow()
addTo
public void addTo(Buildable b)
- Description copied from interface:
Buildable
- Adds this component to its parent.
In order to make Buildable objects extensible, the child
is reponsible for adding itself to the parent. That way,
Buildable subcomponents can be defined in an extension package
without needing to modify the containing class.
getAttributeNames
public java.lang.String[] getAttributeNames()
- Overrides:
getAttributeNames in class AbstractBuildable
- Following copied from class:
VASSAL.build.AbstractBuildable
- Returns:
- a list of all attribute names for this component
setAttribute
public void setAttribute(java.lang.String name,
java.lang.Object value)
- Description copied from class:
AbstractBuildable
- Sets an attribute value for this component. The
key
parameter will be one of those listed in AbstractBuildable.getAttributeNames().
If the value parameter is a String, it will be the
value returned by AbstractBuildable.getAttributeValueString(java.lang.String) for the same
key. If the implementing class extends
AbstractConfigurable, then value will be
an instance of the corresponding Class listed in
AbstractConfigurable.getAttributeTypes()
- Overrides:
setAttribute in class AbstractBuildable
- Following copied from class:
VASSAL.build.AbstractBuildable
- Parameters:
key - the name of the attribute. Will be one of those
listed in AbstractBuildable.getAttributeNames()
getAttributeValueString
public java.lang.String getAttributeValueString(java.lang.String name)
- Description copied from class:
AbstractBuildable
- Return a String representation of the attribute with the given name.
When initializing a module, this String value will be passed to
AbstractBuildable.setAttribute(java.lang.String, java.lang.Object).
- Overrides:
getAttributeValueString in class AbstractBuildable
- Following copied from class:
VASSAL.build.AbstractBuildable
- Parameters:
key - the name of the attribute. Will be one of those
listed in AbstractBuildable.getAttributeNames()