| java.lang.Object csdl.foo.Foo
All known Subclasses: csdl.foo.Bar,
Foo | abstract public class Foo (Code) | | Abstract class included in stand-alone system example.
author: Joy M. Agustin version: $Id: Foo.java,v 1.2 2003/01/25 01:48:58 jagustin Exp $ |
Method Summary | |
abstract public int | methodA() Prints method name to screen then calls methodB(int a). | public void | methodB(int a) Prints method name and parameter type to screen. | abstract public void | methodB(String a, Integer b) Prints method name and parameter types to screen. |
methodA | abstract public int methodA()(Code) | | Prints method name to screen then calls methodB(int a).
an integer. |
methodB | public void methodB(int a)(Code) | | Prints method name and parameter type to screen.
Parameters: a - dummy parameter that doesn't do anything. |
methodB | abstract 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 |
|
|