package dynamicpart; /** *
Title: Tafseer-e-Usmani
*Description: The purpose of this part is to automate the searching using dbase.
*Copyright: Copyright (c) 2003
*Company: Tower Technologies
* @author Arafat * @version 1.0 */ public class SearchBean { private String sample = "Start value"; //Access sample property public String getSample() { return sample; } //Access sample property public void setSample(String newValue) { if (newValue!=null) { sample = newValue; } } }