Package org.spout.api.geo

Examples of org.spout.api.geo.Protection


   * @param name Name of the desired protection one is seeking
   * @return The protection or null if not found
   */
  @Override
  public Protection getProtection(String name) {
    Protection p = null;
    for (Protection registered : protections) {
      if (registered.getName().equals(name)) {
        p = registered;
        break;
      }
View Full Code Here

TOP

Related Classes of org.spout.api.geo.Protection

Copyright © 2018 www.massapicom. 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.