Package br.com.caelum.tubaina.builder.replacer

Source Code of br.com.caelum.tubaina.builder.replacer.CenteredParagraphReplacer

package br.com.caelum.tubaina.builder.replacer;

import br.com.caelum.tubaina.Chunk;
import br.com.caelum.tubaina.chunk.CenteredParagraphChunk;

public class CenteredParagraphReplacer extends AbstractReplacer {
  public CenteredParagraphReplacer() {
    super("center");
  }
  @Override
  protected Chunk createChunk(String options, String content) {
    return new CenteredParagraphChunk(content);
  }

}
TOP

Related Classes of br.com.caelum.tubaina.builder.replacer.CenteredParagraphReplacer

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.