NoSuchMethodError IllegalAccessError problem

Y

yunkang.ahn

Hi,

I've got a strange problem :

Exception in thread "Thread-7" java.lang.NoSuchMethodError:
org.rubato.rubettes.score.Note.getOnset()D
at
org.rubato.rubettes.structures.PartARubette.createBundle(PartARubette.java:
255)


But actually the method getOnset does exist ! (and it would have been
an error during the compilation) but it appears at the execution of my
code.

Moreover this method is just an accessor ; so I tried to make my slots
public (onset is a slot) , and when I did that ther's an other
error :

Exception in thread "Thread-7" java.lang.IllegalAccessError: tried to
access field org.rubato.rubettes.score.Note.onset from class
org.rubato.rubettes.structures.PartARubette
at
org.rubato.rubettes.structures.PartARubette.createBundle(PartARubette.java:
259)


I don't understand why it doesn't work ... could anyone help me ?
`
Many thanks in advance
 
M

Mark Jeffcoat

Exception in thread "Thread-7" java.lang.NoSuchMethodError:
org.rubato.rubettes.score.Note.getOnset()D
at
org.rubato.rubettes.structures.PartARubette.createBundle(PartARubette.java:
255)


But actually the method getOnset does exist ! (and it would have been
an error during the compilation) but it appears at the execution of my
code.

You're org.rubato.rubettes, and PartARubette is something
you're writing, yes?

If you're getting errors at runtime that should have been
caught in the compile, it generally means you've got .class
files that are out of date. Throwing them all away (and
thus forcing a complete re-compile) will solve the problem,
or at least tell you what's really wrong.


I like to do an 'ant clean build' before every check-in
to avoid this problem.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,280
Latest member
BGBBrock56

Latest Threads

Top