| java.lang.Object csdl.foo.Foo csdl.foo.Bar
Bar | public class Bar extends Foo (Code) | | Main class in stand-alone system example that is tested by test classes TestBar and TestBar2.
All methods prints their name to the screen when invoked.
author: Joy M. Agustin version: $Id: Bar.java,v 1.2 2003/01/25 01:48:57 jagustin Exp $ |
Method Summary | |
public static void | main(String[] args) The main program for the Foo class. | public int | methodA() | public void | methodB(String a, Integer b) Prints method name and parameter types to screen. |
main | public static void main(String[] args)(Code) | | The main program for the Foo class. It prints out the method name, creates a new instance
of the Foo class, then calls methodA twice.
Parameters: args - The command line arguments |
methodA | public int methodA()(Code) | | Prints method name to screen then calls methodB(int a)
0 |
methodB | public void methodB(String a, Integer b)(Code) | | Prints method name and parameter types to screen.
Parameters: a - Description of the Parameter Parameters: b - Description of the Parameter |
|
|