File: Goodbye.java

package info (click to toggle)
libxjavadoc-java 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 652 kB
  • ctags: 1,061
  • sloc: java: 6,259; xml: 505; makefile: 11
file content (38 lines) | stat: -rw-r--r-- 588 bytes parent folder | download
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;
	}
}