Android Open Source - Android-CepView I Cep






From Project

Back to project page Android-CepView.

License

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.

Java Source Code

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();
}




Java Source Code List

com.arthurassuncao.cepview.CepView.java
com.arthurassuncao.cepview.ICep.java
com.arthurassuncao.cepview.IViewCEP.java
com.arthurassuncao.cepview_exemplo.CepViewExemploActivity.java
com.arthurassuncao.cepview.model.CEP.java
com.arthurassuncao.cepview.net.ClienteHttp.java
com.arthurassuncao.cepview.net.Conexao.java
com.arthurassuncao.cepview.net.TarefaObtemDadosCEP.java
com.arthurassuncao.cepview.util.Constantes.java