Problem with fix instance

0

Hi, I'm trying to make some fixes and make an instance, but not all variables have fixes. This is my code:

  @NotNull
    @Size(min = 1, max = 10)
    private String Nombre;
    private String Titulo;
    private String Autor;
    private String Asunto;
    private String Descripcion;
    private String Contenido;
    private String[] Nombres;
    private String[] Valores;
    private List<File> Adjuntos;
    //private File  Adjuntos;



 ModelAndView mav = new ModelAndView();

            creacion_PDF crea = new creacion_PDF(
                    m.getNombre(),
                    m.getTitulo(),
                    m.getAutor(),
                    m.getAsunto(),
                    m.getDescripcion(),
                    m.getContenido(),
                    m.getNombres(),//estos me aparecen en rojo
                    m.getValores(),//estos me aparecen en rojo
                    m.getAdjuntos());
    
asked by Kevin Castaño 23.03.2017 в 20:16
source

0 answers