how does eclipse build an application (java/android) while ignoring some errors? because when i generally compile my java class on command line or using ant - i end up getting errors - whereas they can be ignored in build process for eclipse.
For example,non static variable this cannot be referenced from a static context is compilation error i get on command line when i try to build an application through ant - but eclipse java compiler can set this as a warning and allow the process to complete.
Can anyone help me understand this process?