当前位置: 首页>>代码示例>>Java>>正文


Java Buildable.addTo方法代码示例

本文整理汇总了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);
  }
}
 
开发者ID:ajmath,项目名称:VASSAL-src,代码行数:16,代码来源:BasicModule.java

示例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);
}
 
开发者ID:ajmath,项目名称:VASSAL-src,代码行数:8,代码来源:Importer.java

示例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);
        }
      }
    }
  }
}
 
开发者ID:ajmath,项目名称:VASSAL-src,代码行数:36,代码来源:GlobalOptions.java

示例4: addChild

import VASSAL.build.Buildable; //导入方法依赖的package包/类
private void addChild(Buildable b) {
  add(b);
  b.addTo(this);
}
 
开发者ID:ajmath,项目名称:VASSAL-src,代码行数:5,代码来源:ZonedGrid.java


注:本文中的VASSAL.build.Buildable.addTo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。