1 20 package org.enhydra.barracuda.core.comp.renderer; 21 22 23 38 public class RenderStrategy { 39 40 public static final RenderStrategy SCRIPT_AS_NEEDED = new RenderStrategy(); 42 public static final RenderStrategy NEVER_SCRIPT = new RenderStrategy(); 43 public static final RenderStrategy CUSTOM_SCRIPT = new RenderStrategy(); 44 45 public static RenderStrategy DEFAULT_RENDER_STRATEGY = SCRIPT_AS_NEEDED; 46 47 50 protected RenderStrategy() {} 51 52 } 53 | Popular Tags |