Ignore:
Timestamp:
12/05/11 17:51:54 (13 years ago)
Author:
vmipsl
Message:

Login BO
visu sous-menus

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ether_megapoli/trunk/web/src/com/ether/ControllerVisualization.java

    r275 r285  
    1717import org.jdom.output.XMLOutputter; 
    1818import org.jetbrains.annotations.NotNull; 
    19 import org.springframework.beans.factory.annotation.Required; 
    2019import org.springframework.web.servlet.ModelAndView; 
    2120 
     
    7069            throws ServiceException 
    7170    { 
    72         final List<Plateforme> plateforms = _etherService.getAllPlateforms(); 
    73         final Date firstDate = _etherService.getFirstDate(); 
    74         final Date endDate = _etherService.getLastDate(); 
     71        final List<Plateforme> plateforms = getEtherService().getAllPlateforms(); 
     72        final Date firstDate = getEtherService().getFirstDate(); 
     73        final Date endDate = getEtherService().getLastDate(); 
    7574 
    7675        final Map<String, Object> model = new HashMap<String, Object>(); 
     
    9089            throws ServiceException, EtherException 
    9190    { 
    92         final List<Parametre> fullParametersByPlateform = _etherService.getParametersByPlateformId( plateformId ); 
     91        final List<Parametre> fullParametersByPlateform = getEtherService().getParametersByPlateformId( plateformId ); 
    9392        final List<List<Parametre>> parametersByPlateform = manageMenusForParameterList( fullParametersByPlateform ); 
    9493 
     
    274273    } 
    275274 
    276     @Required 
    277     public void setEtherService( @NotNull final EtherService etherService ) 
    278     { 
    279         _etherService = etherService; 
    280     } 
    281  
    282275    private static final Log LOGGER = LogFactory.getLog( ControllerVisualization.class ); 
    283276 
     
    289282    private static final String FORMAT_DEFAULT = "NASA-AMES"; 
    290283    private static final String COMPRESSION_DEFAULT = "None"; 
    291     private EtherService _etherService; 
    292 } 
     284 } 
Note: See TracChangeset for help on using the changeset viewer.