/** * A simple bean to be used by the tag handler of our Custom Tag. * Do note that this bean is in a package. I recommend that the bean you * define should be in a package. * Of course, to get this to work, place the compiled class file for this * Java file in classes/cs4208/beans * * @author Nauman Chaudhry */ package cs4208.beans; public class TestBean{ public TestBean() { } // We have just one getter that we will use in the tag handler. public String getTestContent() { return "This is from the test bean"; } }