本文整理汇总了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);
}