
br.com.objectos.jabuticava.cmatic.PlanoDeContasBuilderPojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmatic Show documentation
Show all versions of cmatic Show documentation
Arquivos de troca para o Contmatic Phoenix (marca registrada)
The newest version!
package br.com.objectos.jabuticava.cmatic;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.annotation.Generated;
@Generated({
"br.com.objectos.way.pojo.compiler.PojoCompiler",
"br.com.objectos.way.pojo.plugin.ListPlugin"
})
final class PlanoDeContasBuilderPojo implements PlanoDeContasBuilder, PlanoDeContasBuilder.PlanoDeContasBuilderContas {
private List contas;
public PlanoDeContasBuilderPojo() {
}
@Override
public PlanoDeContas build() {
return new PlanoDeContasPojo(this);
}
@Override
public PlanoDeContasBuilder.PlanoDeContasBuilderContas contas(List contas) {
if (contas == null) {
throw new NullPointerException();
}
this.contas = contas;
return this;
}
List ___get___contas() {
return contas;
}
@Override
public PlanoDeContasBuilder.PlanoDeContasBuilderContas contas(ContaContabil... elements) {
if (elements == null) {
throw new NullPointerException();
}
List contas = new ArrayList<>(elements.length);
for (int i = 0; i < elements.length; i++) {
ContaContabil e = elements[i];
if (e == null) {
throw new NullPointerException();
}
contas.add(e);
}
this.contas = Collections.unmodifiableList(contas);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy