Examples of debug()


Examples of net.aufdemrand.denizen.objects.dInventory.debug()

        if (items_object != null)
            items = (List<dItem>) items_object;

        dB.report(scriptEntry, getName(),
                aH.debugObj("Type", type.name())
                        + (inventory != null ? inventory.debug(): "")
                        + aH.debugObj("Quantity", qty.asDouble())
                        + engrave.debug()
                        + unlimit_stack_size.debug()
                        + (items != null ? aH.debugObj("Items", items) : "")
                        + slot.debug());
View Full Code Here

Examples of net.aufdemrand.denizen.objects.dList.debug()

                dB.echoError(scriptEntry.getResidingQueue(), "Empty braces!");
                return;
            }

            // Report to dB
            dB.report(scriptEntry, getName(), list.debug());

            int target = list.size();
            if (target <= 0) {
                dB.echoDebug(scriptEntry, "Empty list, not looping...");
                return;
View Full Code Here

Examples of net.aufdemrand.denizen.objects.dLocation.debug()

        Element required_integer = scriptEntry.getElement("required_integer");
        dLocation required_location = scriptEntry.getdObject("required_location");

        // Debug the execution
        dB.report(scriptEntry, getName(), required_integer.debug()
                                          + required_location.debug());

        // Do the execution

        // INSERT
        // YOUR
View Full Code Here

Examples of net.aufdemrand.denizen.objects.dNPC.debug()

        // Report to dB
        dB.report(scriptEntry, getName(),
                aH.debugObj("Target", target.toString())
                        + (target == TargetType.PLAYER ? ((BukkitScriptEntryData)scriptEntry.entryData).getPlayer().debug() : "")
                        + npc.debug()
                        + aH.debugObj("Action", action.toString())
                        + aH.debugObj("Id", id)
                        + (pose_loc != null ? pose_loc.debug() : ""));

        if (!npc.getCitizen().hasTrait(Poses.class))
View Full Code Here

Examples of net.aufdemrand.denizen.objects.dPlayer.debug()

        dScript script = (dScript) scriptEntry.getObject("script");
        dPlayer player = (dPlayer) scriptEntry.getObject("player");

        // Report to dB
        dB.report(scriptEntry, getName(),
                player.debug() + script.debug());

        failScript(player.getName(), script.getName());
    }

    public static void resetFails(String playerName, String scriptName) {
View Full Code Here

Examples of net.aufdemrand.denizen.objects.dScript.debug()

        dScript script = (dScript) scriptEntry.getObject("script");
        dPlayer player = (dPlayer) scriptEntry.getObject("player");

        // Report to dB
        dB.report(scriptEntry, getName(),
                player.debug() + script.debug());

        failScript(player.getName(), script.getName());
    }

    public static void resetFails(String playerName, String scriptName) {
View Full Code Here

Examples of net.aufdemrand.denizen.objects.dWorld.debug()

        Type type = Type.valueOf(type_element.asString().toUpperCase());

        // Report to dB
        dB.report(scriptEntry, getName(), type_element.debug()
                                          + value.debug()
                                          + world.debug());

        if (type.equals(Type.GLOBAL)) {
            world.getWorld().setTime(value.getTicks());
        }
        else {
View Full Code Here

Examples of net.aufdemrand.denizen.scripts.queues.ScriptQueue.debug()

        ScriptQueue queue = (ScriptQueue) scriptEntry.getObject("queue");
        Action action = (Action) scriptEntry.getObject("action");
        Duration delay = (Duration) scriptEntry.getObject("delay");

        // Debugger
        dB.report(scriptEntry, getName(), queue.debug()
                + aH.debugObj("Action", action.toString())
                + (action == Action.DELAY ? delay.debug() : ""));

        switch (action) {
View Full Code Here

Examples of net.jcores.jre.utils.internal.Options.debug()

     * @param manifest The manifest (can be null).
     */
    protected void pack(Manifest manifest, Option... options) {
        final Options options$ = Options.$($, options);
        final ClassLoader systemloader = ClassLoader.getSystemClassLoader().getParent();
        final boolean debug = options$.debug();
        URLClassLoader loader = $(getClass().getClassLoader()).get(URLClassLoader.class, null);

        // Check the current loader
        if (loader == null) {
            System.err.println("Unable to get the classpath for this script. Cannot pack. Sorry.");
View Full Code Here

Examples of net.sf.gluebooster.java.booster.essentials.logging.LogBooster.debug()

   */
  public static RootDoc linkToGeneratedExamples(RootDoc root) throws Exception{

    ExampleCreatingRootDocHandler handler = createDefaultHandler(root);
    LogBooster protocol = handler.getProtocol(root);
    protocol.debug("linkToGeneratedExamples");

    HashSet<Doc> foundExamples = new HashSet<Doc>();
    for (ClassDoc classDoc: root.classes()){
      handler.modify(classDoc, classDoc, foundExamples, protocol);
     
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.