1 package org.apache.turbine.modules.layouts; 2 3 18 19 import org.apache.turbine.modules.Layout; 20 import org.apache.turbine.util.RunData; 21 import org.apache.turbine.util.TurbineException; 22 23 31 public class DirectResponseLayout extends Layout 32 { 33 39 public void doBuild(RunData data) 40 throws Exception  41 { 42 if (!data.isOutSet()) 43 { 44 throw new TurbineException( 45 "data.declareDirectResponse() has not been called"); 46 } 47 } 48 49 } 50 | Popular Tags |