Package aimax.osm.data.entities

Examples of aimax.osm.data.entities.EntityViewInfo


   * Updates the view information of a given entity by means of the current
   * entity classifier. If suitable viewing information was found and
   * <code>addToTree</code> is true, the entity is added to the entity tree.
   */
  private void updateEntityViewInfo(MapEntity entity, boolean addToTree) {
    EntityViewInfo info = null;
    if (entityClassifier != null)
      info = entityClassifier.classify(entity);
    entity.setViewInfo(info);
    if (addToTree && info != null)
      entityTree.insertEntity((DefaultMapEntity) entity);
View Full Code Here

TOP

Related Classes of aimax.osm.data.entities.EntityViewInfo

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.