/Users/johnr/Dropbox/johnrayworth.info/largeFilesOutsideJSR/__IB-Other/Other/IA-Solutions-2019/ChinChao/Product/gatepass/src/gatepass/NormalGatePass.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package gatepass;
 7 
 8 /**
 9  *
10  * @author 14367
11  */
12 public class NormalGatePass extends GatePass {
13     private boolean isSenior = false;    
14     
15     public NormalGatePass(String name, int gradeLevel, int id, String comments) {
16         super(name, gradeLevel, id, comments);
17     }
18     
19     public boolean getIsSenior(){
20         return isSenior;
21     }
22     
23     public int getPassNumber(){
24         return -999;
25     }
26    
27     
28 }
29