FileDocCategorySizeDatePackage
FinalMethod.javaAPI DocExample1178Sun Dec 14 22:47:38 GMT 2003oreilly.hcj.finalstory

FinalMethod

public class FinalMethod extends Object
Base class for demonstation of final methods.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.3 $

Fields Summary
private final String
name
A demo property.
Constructors Summary
protected FinalMethod(String name)
Creates a new FinalMethodBase object.

param
name The name to use.

		this.name = name;
	
Methods Summary
public final java.lang.StringgetName()
Gets the value of the property name.

return
The current name.

		return this.name;
	
public final voidsomeMethod()
A demo method.