1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
// no package
import java.io.*;
import java.rmi.*;
import java.rmi.Remote;
// import a class with an inner class. it should be resolved corresctly
import hanoi.Processor;
/**
* Bla bla
* yadda yadda
* @foo:bar
*beer="good"
* tea="bad"
*
*/
class Goodbye extends Hello {
// 2 methods here, one of them overrides one from superclass
private String gaga;
/**
* This overrides a method from Hello
*
* @titi toto="tata"
*/
public InputStream getNonsense() {
return null;
}
private void newMethod() {}
public Processor.Next gotThis() {
return null;
}
}
|