1 package org.testng.mustache; 2 3 abstract public class BaseChunk { 4 5 protected Model m_model; 6 BaseChunk(Model model)7 public BaseChunk(Model model) { 8 m_model = model; 9 } 10 p(String string)11 protected void p(String string) { 12 if (false) { 13 System.out.println(string); 14 } 15 } 16 compose()17 abstract String compose(); 18 } 19