當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。