Package fing.satode.data

Examples of fing.satode.data.TipoEventoDTO


      EventoDTO dto =new EventoDTO();
     
      dto.setLatitud(getFloat(latidud.getText()));
      dto.setLatitud(getFloat(longitud.getText()));
      dto.setLatitudlongitud(true);
      TipoEventoDTO tpEvento=null;
      for(TipoEventoDTO tp:tiposEventosGlobal){
        if(tp.getId().equals(Long.valueOf(tipoEventos.getValue(tipoEventos.getSelectedIndex())))){
          tpEvento=tp;
        }
      }
View Full Code Here


  public void setDescripcion(String descripcion) {
    this.descripcion = descripcion;
  }
 
  public TipoEventoDTO getDTO(){
    TipoEventoDTO dto= new TipoEventoDTO();
    dto.setId(id);
    dto.setDescripcion(descripcion);
    dto.setNombre(nombre);
   
    return dto;
   
  }
View Full Code Here

TOP

Related Classes of fing.satode.data.TipoEventoDTO

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.