Package net.alteiar.beans.map.elements

Examples of net.alteiar.beans.map.elements.MapElement.contain()


    ArrayList<MapElement> elementsAt = new ArrayList<MapElement>();
    HashSet<UniqueID> elements = getElements();

    for (UniqueID id : elements) {
      MapElement element = CampaignClient.getInstance().getBean(id);
      if (element != null && element.contain(position)) {
        elementsAt.add(element);
      }
    }

    return elementsAt;
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.