Skip to content

Instantly share code, notes, and snippets.

@javerosanonimos
Last active February 21, 2017 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javerosanonimos/4b7b47b079e5d133b79c02a0ae8200ee to your computer and use it in GitHub Desktop.
Save javerosanonimos/4b7b47b079e5d133b79c02a0ae8200ee to your computer and use it in GitHub Desktop.
Bean que usaremos para los ejemplos de ordenar listas
/**
@Autor: www.javerosanonimos.com
Twitter: @javerosanonimos
Facebook: www.facebook.com/JaverosAnonimos
e-mail: javerosanonimos@gmail.com
**/
public class BeanParaOrdenar {
private String codigo;
private Integer valor;
public String getCodigo() {
return codigo;
}
public void setCodigo(final String codigo) {
this.codigo = codigo;
}
public Integer getValor() {
return valor;
}
public void setValor(final Integer valor) {
this.valor = valor;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment