Package br.com.caelum.tubaina.parser.html.desktop

Source Code of br.com.caelum.tubaina.parser.html.desktop.TableTag

package br.com.caelum.tubaina.parser.html.desktop;

import br.com.caelum.tubaina.chunk.TableChunk;
import br.com.caelum.tubaina.parser.Tag;
import br.com.caelum.tubaina.parser.html.TableTagTemplate;
import br.com.caelum.tubaina.util.Sanitizer;

import com.google.inject.Inject;

public class TableTag implements Tag<TableChunk> {

  private TableTagTemplate template;
 
  @Inject
  public TableTag(Sanitizer sanitizer) {
     template = new TableTagTemplate(sanitizer);
  }

  @Override
  public String parse(TableChunk chunk) {
    return template.parse(chunk);
  }

}
TOP

Related Classes of br.com.caelum.tubaina.parser.html.desktop.TableTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.