Package com.bergerkiller.bukkit.common

Examples of com.bergerkiller.bukkit.common.FromToCounter.reset()


    FromToCounter pingCounter = new FromToCounter();
    if (hasText) {
      textCounter.reset(0, text.length - 1);
    }
    if (hasPing) {
      pingCounter.reset(0, ping.length - 1);
    }
    // Start processing the area
    while (counterX.hasNext()) {
      counterX.next();
      counterY.reset();
View Full Code Here


    FromToCounter counterX = new FromToCounter(x1, x2);
    FromToCounter counterY = new FromToCounter(y1, y2);
    // Start processing the area
    while (counterX.hasNext()) {
      counterX.next();
      counterY.reset();
      while (counterY.hasNext()) {
        counterY.next();
        set(counterX.get(), counterY.get(), text, ping);
      }
    }
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.