Back to project page Android-CepView.
The source code is released under:
Copyright (c) 2013, Arthur Nascimento Assuncao All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditio...
If you think the Android project Android-CepView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.arthurassuncao.cepview; // w w w .j a v a2s. com import com.arthurassuncao.cepview.model.CEP; public interface ICep { public String getCEP(); public void setCEP(String cep); public String getEndereco(); public void setEndereco(String endereco); public String getNumeroEndereco(); public void setNumeroEndereco(String numeroEndereco); public String getBairro(); public void setBairro(String bairro); public String getCidade(); public void setCidade(String cidade); public String getEstado(); public void setEstado(String estado); public CEP getCepAtual(); }