Examples of modifyMap()


Examples of it.eng.spagobi.mapcatalogue.dao.ISbiGeoMapsDAO.modifyMap()

      if (content == null){
        content = DAOFactory.getBinContentDAO().getBinContent(new Integer(mapNew.getBinId()));
      }
      List lstOldFeatures = DAOFactory.getSbiGeoMapFeaturesDAO().loadFeaturesByMapId(new Integer(mapNew.getMapId()));
      //update map
      daoGeoMaps.modifyMap(mapNew, content);     
      //update features
      List lstNewFeatures = loadUpdateMapFeatures(mapNew,profile);
      logger.debug("Loaded " +lstNewFeatures.size()+ " features form svg file." );
       // If in the new file svg there aren't more some feature, the user can choose if erase theme relations or not.
      List lstFeaturesDel = new ArrayList();
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.