About ArrayList...
I got this simple code:
private ArrayList<Logic> logic =new ArrayList<ILogic>();
public Logic getLogic(int pos)
if( logic.get(pos) !=null );// error here*
return logic.get(pos)
* if the position do not existis, i can't get thelogic in that position to check if its null...
Question: How can i check iflogic in positionpos is null?

