Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public PositionList<TuClase> obtenerRopa{
  2.             PositionList<TuClase> devolver = new TuLista<TuClase>();   
  3.             for(Position<TuClase> pos : TuLista.positions()){
  4.                 if(pos.element().getItemKey() == CLOTHING)
  5.                     devolver.addLast(pos.element());
  6.             }
  7.             return devolver;
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement