Package sis.studentinfo

Examples of sis.studentinfo.Student.unset()


    assertTrue(student.isOn(Student.Flag.MINOR));
   
    assertFalse(student.isOff(Student.Flag.ON_CAMPUS));
    assertTrue(student.isOff(Student.Flag.TROUBLEMAKER));
   
    student.unset(Student.Flag.ON_CAMPUS);
    assertTrue(student.isOff(Student.Flag.ON_CAMPUS));
    assertTrue(student.isOn(Student.Flag.TAX_EXEMPT));
    assertTrue(student.isOn(Student.Flag.MINOR));
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.