Class Student

java.lang.Object
  |
  +--Student

public class Student
extends java.lang.Object

Student Class maintains all the details of the student It maintains arrays for keeping track course taken, grades obtaines, semister and units for each *course


Field Summary
static java.lang.String address
           
static int age
           
static int[] courselist
           
static java.lang.String[] coursetitle
           
 java.util.Date DateOfBirth
           
static int[] DOB
           
static int[] grade
           
static java.lang.String name
           
static int pgorug
           
static int roll
           
static int[] sem
           
static java.lang.String thesis
           
static java.lang.String thesisguide
           
static int[] units
           
 
Constructor Summary
Student(int r, java.lang.String n, java.lang.String add, java.util.Date dob, int[] cl, int[] g, int[] s, java.lang.String[] ct, int[] u, java.lang.String t, java.lang.String tg, int pu)
          Initialize the student object using constructor
 
Method Summary
static java.lang.String getaddress()
           
static int[] getcourselist()
           
static java.lang.String[] getcoursetitle()
           
 java.util.Date getDOB()
           
static int[] getgrade()
           
static java.lang.String getname()
          Now, following are functions to retrieve the data of Students
static int getpgorug()
           
static int[] getsem()
           
static java.lang.String getthesis()
           
static java.lang.String getthesisguide()
           
static int[] getunits()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

roll

public static int roll

DOB

public static int[] DOB

age

public static int age

courselist

public static int[] courselist

grade

public static int[] grade

sem

public static int[] sem

units

public static int[] units

address

public static java.lang.String address

name

public static java.lang.String name

thesis

public static java.lang.String thesis

thesisguide

public static java.lang.String thesisguide

coursetitle

public static java.lang.String[] coursetitle

pgorug

public static int pgorug

DateOfBirth

public java.util.Date DateOfBirth
Constructor Detail

Student

public Student(int r,
               java.lang.String n,
               java.lang.String add,
               java.util.Date dob,
               int[] cl,
               int[] g,
               int[] s,
               java.lang.String[] ct,
               int[] u,
               java.lang.String t,
               java.lang.String tg,
               int pu)
Initialize the student object using constructor

Method Detail

getname

public static java.lang.String getname()
Now, following are functions to retrieve the data of Students


getaddress

public static java.lang.String getaddress()

getcourselist

public static int[] getcourselist()

getgrade

public static int[] getgrade()

getsem

public static int[] getsem()

getunits

public static int[] getunits()

getDOB

public java.util.Date getDOB()

getthesis

public static java.lang.String getthesis()

getthesisguide

public static java.lang.String getthesisguide()

getpgorug

public static int getpgorug()

getcoursetitle

public static java.lang.String[] getcoursetitle()