//Bunch-O-Review from Ferworn. Oct 2011 // kind of implements boolean values to work like in the C programming // language where 0==false and all other values are true; public class MidReview { public boolean truth; public MidReview(boolean option) { truth=option; } public MidReview(int option) { truth = false; if(option != 0) truth = true; } public boolean notter() { return !truth; } public void makenot() { truth = !truth; } }