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());