Examples of staticifyEffect()


Examples of javaff.data.GroundEffect.staticifyEffect()

    Set newlit = new HashSet(literals.size());
    Iterator it = literals.iterator();
    while (it.hasNext())
    {
      GroundEffect e = (GroundEffect) it.next();
      if (! (e instanceof NullEffect)) newlit.add(e.staticifyEffect(fValues));
    }
    literals = newlit;
    if (literals.isEmpty()) return NullEffect.getInstance();
    else return this;
    }
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.