Examples of AddInfo()


Examples of org.wikipediacleaner.gui.swing.menu.MWPaneCheckWikiMenuCreator.addInfo()

    }

    CheckErrorResult info = (CheckErrorResult) attrInfo;
    MWPaneCheckWikiMenuCreator menu = new MWPaneCheckWikiMenuCreator();
    JPopupMenu popup = menu.createPopupMenu(null);
    menu.addInfo(popup, element, textPane, info);
    return popup;
  }
}
View Full Code Here

Examples of pneumaticCraft.api.client.pneumaticHelmet.IHackableBlock.addInfo()

            if(percentageComplete < 100) {
                infoList.add(I18n.format("pneumaticHelmet.hacking.hacking") + " (" + percentageComplete + "%%)");
            } else if(hackTime < requiredHackTime + 20) {
                hackableBlock.addPostHackInfo(world, x, y, z, infoList, PneumaticCraft.proxy.getPlayer());
            } else {
                hackableBlock.addInfo(world, x, y, z, infoList, PneumaticCraft.proxy.getPlayer());
            }
        }
    }

    @Override
View Full Code Here

Examples of pneumaticCraft.api.client.pneumaticHelmet.IHackableEntity.addInfo()

                        break;
                    }
                }

                if(hackTime == 0) {
                    hackable.addInfo(entity, curInfo, PneumaticCraft.proxy.getPlayer());
                } else {
                    int requiredHackTime = hackable.getHackTime(entity, PneumaticCraft.proxy.getPlayer());
                    int percentageComplete = hackTime * 100 / requiredHackTime;
                    if(percentageComplete < 100) {
                        curInfo.add("Hacking... (" + percentageComplete + "%%)");
View Full Code Here

Examples of pneumaticCraft.common.block.tubes.TubeModule.addInfo()

            for(int i = 0; i < moduleList.tagCount(); i++) {
                NBTTagCompound moduleTag = moduleList.getCompoundTagAt(i);
                if(dir == ForgeDirection.getOrientation(moduleTag.getInteger("side"))) {
                    TubeModule module = ModuleRegistrator.getModule(moduleTag.getString("type"));
                    module.readFromNBT(moduleTag);
                    module.addInfo(currenttip);
                }
            }
        }
        return currenttip;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.