PDA

View Full Version : problema compilazione progetto Java


The_Carver
17-06-2009, 15:59
Salve a tutti....
ho riscontrato, durante la compilazione del mio progetto in Java(netbeans), 3 errori....
ve li posto e poi spiego meglio

init:
deps-jar:
Compiling 13 source files to C:\Documents and Settings\*******\Desktop\progetto2\build\classes
C:\Documents and Settings\*******\Desktop\progetto2\src\Intro.java:332: cannot find symbol
symbol : method setDefaultRowBackgroundMode(boolean)
location: class com.birosoft.liquid.LiquidLookAndFeel
LiquidLookAndFeel.setDefaultRowBackgroundMode(false);
C:\Documents and Settings\*******\Desktop\progetto2\src\MainAgenzia.java:616: cannot find symbol
symbol : method setDefaultRowBackgroundMode(boolean)
location: class com.birosoft.liquid.LiquidLookAndFeel
LiquidLookAndFeel.setDefaultRowBackgroundMode(false);
C:\Documents and Settings\*******\Desktop\progetto2\src\MainAmministratori.java:372: cannot find symbol
symbol : method setDefaultRowBackgroundMode(boolean)
location: class com.birosoft.liquid.LiquidLookAndFeel
LiquidLookAndFeel.setDefaultRowBackgroundMode(false);
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
3 errors
BUILD FAILED (total time: 2 seconds)

è un errore relativo alla classe liquidlnf.jar che ho scaricato e implementato nel progetto download qui(https://liquidlnf.dev.java.net/)
permette di cambiare skin(metal,mac....)

ma non riesco a risolvere questi 3 errori....
:muro:

ripeto....ho scaricato il .jar e implementato nelle librerie del progetto...ma ha risolto solo alcuni problemi questi 3 errori no!!


grazie a tutti.

Wing_Zero
17-06-2009, 16:19
importa la libreria che contiene questa funzione:
setDefaultRowBackgroundMode(boolean)
e poi ricompila.

Se l'hai già importata hai sbgliato qualcosa, xke' il linker nn lo trova!
ciao
wing