FileDocCategorySizeDatePackage
SomeClass.javaAPI DocExample1451Sun Dec 14 22:47:36 GMT 2003oreilly.hcj.reflection

SomeClass

public class SomeClass extends Object
A demo bean class.
author
Robert (Kraythe) Simmons jr.

Fields Summary
private String[]
values
The holder for the values property.
Constructors Summary
Methods Summary
public java.lang.String[]getValues()
Getter for values.

return
Returns the values.

		return values;
	
public java.lang.StringgetValues(int index)
Getter for values.

param
index The index to get.
return
Returns the values.

		return values[index];
	
public voidsetValues(java.lang.String[] values)
Setter for values.

param
values The values to set.


	          	 
	    
		this.values = values;
	
public voidsetValues(java.lang.String value, int index)
Setter for values.

param
value The values to set.
param
index The index to set.

		this.values[index] = value;