to be more precise:
both classes belongs to the same package, and jbuilder said that the
files have been moved
randomGenerator.java:
------------
public class randomGenerator {
Random rnd;
randomGenerator() {
rnd = new Random();
}
...
---------------
arrival1.java
---------------
public class arrival1 extends event {
private float time;
public void arrival1(float clock) {
randomGenerator rnd = new randomGenerator();
time = clock + rnd.getNextTime();
}
....
--------------------------
randomGenerator rnd = new randomGenerator();
time = clock + rnd.getNextTime();
in these two rows jbuilder says: that it cannot find symbol: class
randomGenerator, location : class system.arrival1 .....
I had similar problem also with other versions of jbuilder.
can someone help me to solve this prob?
thanx
Giulio