FileDocCategorySizeDatePackage
OuterClass.javaAPI DocExample2433Sun Dec 14 22:47:42 GMT 2003oreilly.hcj.nested

OuterClass

public class OuterClass extends Object
Demonstration of some static nested classes.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.5 $

Fields Summary
private static final String
name
Holds the name.
private static String
company
Holds the company.
private int
value
Holds a value.
Constructors Summary
Methods Summary
public static voiddoPrivate()
Demo of instatiation of a private class.

		SomeOtherClass cl = new SomeOtherClass();
		cl.someMethod();
	
public static java.lang.StringgetCompany()
Getter for the property company.

return
The current company.


	          	 
	    
		return company;
	
public static java.lang.StringgetName()
Getter for the variable name.

return
The current name.

		return name;
	
public intgetValue()
Getter for the variable company.

return
the current company.

		return value;