![JAR search and dependency download from the Maven repository](/logo.png)
br.com.objectos.jabuticava.cmatic.PlanoDeContas Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jabuticava-cmatic Show documentation
Show all versions of jabuticava-cmatic Show documentation
Arquivos de troca para o Contmatic Phoenix (marca registrada)
The newest version!
/*
* Copyright 2013 Objectos, Fábrica de Software LTDA.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package br.com.objectos.jabuticava.cmatic;
import static com.google.common.collect.Lists.transform;
import java.util.List;
import javax.annotation.concurrent.NotThreadSafe;
import com.google.common.base.Function;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
/**
* @author [email protected] (Edenir Norberto Anschau)
*/
@NotThreadSafe
public class PlanoDeContas {
interface CMatic {
List getContas();
}
private final List contas;
private String txt;
private PlanoDeContas(CMatic cmatic) {
this.contas = cmatic.getContas();
}
static PlanoDeContas of(CMatic cmatic) {
return new PlanoDeContas(cmatic);
}
public final String getNome() {
return "Plcontas.txt";
}
public String toTxt() {
if (txt == null) {
List lines = toLines();
txt = Joiner.on("\r\n").join(lines);
}
return txt;
}
private List toLines() {
List lines = transform(contas, ContaContabilToTxt.INSTANCE);
return ImmutableList.copyOf(lines);
}
private static enum ContaContabilToTxt implements Function {
INSTANCE;
@Override
public String apply(ContaContabil cc) {
return cc.toPlanoDeContasTxt();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy