All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.objectos.way.duplicata.DuplicataRenderGuice Maven / Gradle / Ivy

The newest version!
/*
 * DuplicataRenderGuice.java criado em 07/05/2013
 * 
 * Propriedade de Objectos Fábrica de Software LTDA.
 * Reprodução parcial ou total proibida.
 */
package br.com.objectos.way.duplicata;

import com.google.inject.Inject;

/**
 * @author [email protected] (Edenir Norberto Anschau)
 */
class DuplicataRenderGuice implements DuplicataRender {

  private final Contexts contexts;

  private final Mustaches mustaches;

  @Inject
  public DuplicataRenderGuice(Contexts contexts, Mustaches mustaches) {
    this.contexts = contexts;
    this.mustaches = mustaches;
  }

  @Override
  public Contexts contexts() {
    return contexts;
  }

  @Override
  public Mustaches mustaches() {
    return mustaches;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy