1 package test.html.pre;
2 
3 interface X03 {
4 	/**
5 	* The following is some sample code which illustrates source formatting within javadoc comments:
6 	* <pre>
7 	* public class Example {final int a= 1;final boolean b= true;}
8 	* </pre>
9 	* Descriptions of parameters and return values are best appended at end of the javadoc comment.
foo(int a, int b)10 	*/int foo(int a, int b);
11 }
12