本文整理匯總了Java中VASSAL.build.Buildable.addTo方法的典型用法代碼示例。如果您正苦於以下問題:Java Buildable.addTo方法的具體用法?Java Buildable.addTo怎麽用?Java Buildable.addTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類VASSAL.build.Buildable
的用法示例。
在下文中一共展示了Buildable.addTo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addComponent
import VASSAL.build.Buildable; //導入方法依賴的package包/類
protected void addComponent(Class<? extends Buildable> componentClass) {
Buildable child = null;
try {
child = componentClass.getConstructor().newInstance();
}
catch (Throwable t) {
ReflectionUtils.handleNewInstanceFailure(t, componentClass);
}
if (child != null) {
child.build(null);
child.addTo(this);
add(child);
}
}
示例2: insertComponent
import VASSAL.build.Buildable; //導入方法依賴的package包/類
static protected void insertComponent(Buildable child, Buildable parent) {
child.build(null);
if (child instanceof PieceSlot)
((PieceSlot) child).updateGpId(GameModule.getGameModule());
child.addTo(parent);
parent.add(child);
}
示例3: build
import VASSAL.build.Buildable; //導入方法依賴的package包/類
public void build(Element e) {
if (e == null) return;
final NamedNodeMap nnm = e.getAttributes();
for (int i = 0; i < nnm.getLength(); ++i) {
final Attr att = (Attr) nnm.item(i);
setAttribute(att.getName(), att.getValue());
}
for (Node n = e.getFirstChild(); n != null; n = n.getNextSibling()) {
if (n.getNodeType() == Node.ELEMENT_NODE) {
final Element element = (Element) n;
if ("option".equals(element.getTagName())) { //$NON-NLS-1$
final String optionName = element.getAttribute("name"); //$NON-NLS-1$
final String value = Builder.getText(element);
optionInitialValues.put(optionName, value);
// Update the Configurer value if it is already registered
final Configurer config = optionConfigurers.get(optionName);
if (config != null) {
config.setValue(value);
}
}
else {
try {
final Buildable b = Builder.create(element);
b.addTo(this);
add(b);
}
catch (IllegalBuildException ex) {
ErrorDialog.bug(ex);
}
}
}
}
}
示例4: addChild
import VASSAL.build.Buildable; //導入方法依賴的package包/類
private void addChild(Buildable b) {
add(b);
b.addTo(this);
}