1 package org.oddjob.arooa;2 3 /**4 * 5 */6 7 8 public class BespokeBuildComponent {9 10 String checkString;11 12 public void addComponentBespoke(Object theString) {13 checkString = theString.toString();14 }15 16 public ArooaHandler handlerForBespoke(ArooaContext context) {17 return new BespokeComponentHandler();18 }19 }20