14/05/2015, 14:51
|
| | Fecha de Ingreso: noviembre-2007
Mensajes: 17
Antigüedad: 17 años Puntos: 0 | |
Respuesta: Que hacer cuando aparece Recompile with -Xlint ? Hola Falken,
Ahora si me funciona la sugerencia que me diste pero tuve que bajar el otro jar
import org.jdom2.Element;
Quedó asi:
List<Element> campos_md = Collections.checkedList(hijo.getChildren(), Element.class) ;
---
Ahora me sale otro error:
warning: [options] bootstrap class path not set in conjunction with -source 1.6
D:\Users\cherna08\CSOFIA\proyectos\MediacionXml_GG SN\src\librerias\ReadFile.java:30: warning: [unchecked] unchecked call to add(E) as a member of the raw type ArrayList
buffer.add(line);
where E is a type-variable:
E extends Object declared in class ArrayList
-
tengo el siguiente codigo
private ArrayList buffer;
..
buffer = new ArrayList();
for(line = in.readLine(); line != null; line = in.readLine()) buffer.add(line);
no entiendo bien el error?? debo agregar a buffer un elemento tipo Element?? |