All Packages  Class Hierarchy

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Index of all Fields and Methods

A

address. Variable in class Empl.Empl
Variable to store the address of the Employee
Append(Object). Method in class Container.ContainerArray
This is the default Append function which will append the new container in the ArrayContainer.It will dynamically create an instance of the Container class
Append(Object). Method in class Container.ContainerList
This is the default Append function which will append the new container in the ListContainer.It will dynamically create an instance of the Container class
Append(Object). Method in class Container.Implementation
This is the default Append function which will append the new container in the ListContainer.It will dynamically create an instance of the Container class
AppendImpl(Object). Method in class Container.ContainerArray
This function is called when we change the implementation at run time This function copy reference the all containers of ContainerList to the ContainerArray.This will be called by the Constructor while changing the implementation at run time
AppendImpl(Object). Method in class Container.ContainerList
This function is called when we change the implementation at run time This function copy reference the all containers of ContainerArray to the ContainerList.This will be called by the Constructor while changing the implementation at run time
AppendImpl(Object). Method in class Container.Implementation
This function is called when we change the implementation at run time.
array. Variable in class Container.ContainerArray
"array" is the Array of Containers .It can contains the Object of type Container
ArrayFullException(). Constructor for class MyException.ArrayFullException
ArrayFullException(String). Constructor for class MyException.ArrayFullException

C

Container(). Constructor for class Container.Container
Default Constructor
ContainerArray(). Constructor for class Container.ContainerArray
Default Constructor of the Array Container
ContainerArray(Object). Constructor for class Container.ContainerArray
Constuctor used to called while switching from one implementation to other
ContainerList(). Constructor for class Container.ContainerList
Default Constructor of the ListContainer
ContainerList(Object). Constructor for class Container.ContainerList
Constuctor used to called while switching from one implementation to other
ContractEmployee(). Constructor for class Empl.ContractEmployee
Default Constructor
ContractEmployee(String, String, String, String). Constructor for class Empl.ContractEmployee
Constructor with four argument "name","address","sin" and wage
ContractEmployeeContainer(). Constructor for class Container.ContractEmployeeContainer
default Constructor

E

Empl(). Constructor for class Empl.Empl
Default Constructor
Empl(String, String). Constructor for class Empl.Empl
Constructor with two argument "name" and "address"
Employee(). Constructor for class Empl.Employee
Default Constructor
Employee(String, String, String). Constructor for class Empl.Employee
Constructor with three argument "name" ,"address" and "Sin"
EmployeeNotPresentException(). Constructor for class MyException.EmployeeNotPresentException
EmployeeNotPresentException(String). Constructor for class MyException.EmployeeNotPresentException
EmployeePresentException(). Constructor for class MyException.EmployeePresentException
EmployeePresentException(String). Constructor for class MyException.EmployeePresentException

F

first. Variable in class Container.ContainerList
first is the Reference of type Container .This point to Front of the List

G

getInt(). Static method in class Global.MyInput
Static Function for integer input
GetName(). Method in class Container.Container
This is the Abstract Function Implemented by Derived Classes It will return the "name" field of the Container
GetName(). Method in class Empl.ContractEmployee
GetName is the Function which return the protected attribute "name" associated with the Employee
GetName(). Method in class Container.ContractEmployeeContainer
It will return the "name" field of the Container
GetName(). Method in class Empl.Empl
GetName is the Abstract Function which return the protected attribute "name"
GetName(). Method in class Empl.Employee
GetName is the Abstract Function which return the protected attribute "name"
GetName(). Method in class Empl.PermanentEmployee
GetName is the Function which return the protected attribute "name" associated with the Employee
GetName(). Method in class Container.PermanentEmployeeContainer
It will return the "name" field of the Container
GetName(). Method in class Empl.Volunteer
GetName is the Function which return the protected attribute "name" associated with the Employee
GetName(). Method in class Container.VolunteerContainer
It will return the "name" field of the Container
getString(). Static method in class Global.MyInput
Static Function for String input
GetValue(). Method in class Container.Container
This is the Abstract Function Implemented by Derived Classes It will return the Reference Stored in the Container
GetValue(). Method in class Container.ContractEmployeeContainer
It will return the Reference Stored in the Container
GetValue(). Method in class Container.PermanentEmployeeContainer
It will return the Reference Stored in the Container
GetValue(). Method in class Container.VolunteerContainer
It will return the Reference Stored in the Container

I

Implementation(). Constructor for class Container.Implementation

L

limit. Static variable in class Container.ContainerArray
"limit" varible is used to keep trace array Limit
ListEmptyException(). Constructor for class MyException.ListEmptyException
ListEmptyException(String). Constructor for class MyException.ListEmptyException

M

Member(String). Method in class Container.ContainerArray
This function tells that Employee with the "name" field is in the ContianerArray or not
Member(String). Method in class Container.ContainerList
This function tells that Employee with the "name" field is in the ContianerList or not
Member(String). Method in class Container.Implementation
This function tells that Employee with the "name" field is in the ContianerList or not
MyDataInputStream. Static variable in class Global.MyInput
Variable for the DataInputStream to input the Data
MyInput(). Constructor for class Global.MyInput

N

name. Variable in class Empl.Empl
Variable to store the name of the Employee
next. Variable in class Container.Container
point to the next Container
Next(). Method in class Container.Container
Return the Next Container

P

PermanentEmployee(). Constructor for class Empl.PermanentEmployee
Default Constructor
PermanentEmployee(String, String, String, String). Constructor for class Empl.PermanentEmployee
Constructor with four argument "name","address","sin" and salary
PermanentEmployeeContainer(). Constructor for class Container.PermanentEmployeeContainer
default Constructor
PrintList(). Method in class Container.ContainerArray
PrintList will print the Whole ContainerArray
PrintList(). Method in class Container.ContainerList
PrintList will print the Whole ContainerArray
PrintList(). Method in class Container.Implementation
PrintList will print the Whole ContainerArray

R

readObject(ObjectInputStream). Method in class Container.Container
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Container.ContainerArray
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Container.ContainerList
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Empl.ContractEmployee
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Container.ContractEmployeeContainer
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Empl.Empl
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Empl.Employee
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Container.Implementation
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Empl.PermanentEmployee
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Container.PermanentEmployeeContainer
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Empl.Volunteer
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
readObject(ObjectInputStream). Method in class Container.VolunteerContainer
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream

S

salary. Variable in class Empl.PermanentEmployee
Variable to store the salary of the Permanent Employee
SetNext(Container). Method in class Container.Container
This Function will Set the Container "next" field to the reference passed
SetSalary(String). Method in class Container.Container
This is the Abstract Function Implemented by Derived Classes It will Set the Salary/Wage of the Container
SetSalary(String). Method in class Container.ContractEmployeeContainer
It will Set the Salary/Wage of the Container
SetSalary(String). Method in class Container.PermanentEmployeeContainer
It will Set the Salary/Wage of the Container
SetSalary(String). Method in class Container.VolunteerContainer
It will Set the Salary/Wage of the Container
SetSalary(String, String). Method in class Container.ContainerArray
SetSalary function set the Salary of the Employee (Searched by name ) by the String passed as Salary
SetSalary(String, String). Method in class Container.ContainerList
SetSalary function set the Salary of the Employee (Searched by name ) by the String passed as Salary
SetSalary(String, String). Method in class Container.Implementation
SetSalary function set the Salary of the Employee (Searched by name ) by the String passed as Salary
SetValue(Object). Method in class Container.Container
This is the Abstract Function Implemented by Derived Classes It will Set the Container to the value passed as Object
SetValue(Object). Method in class Container.ContractEmployeeContainer
It will Set the Container to the value passed as Object
SetValue(Object). Method in class Container.PermanentEmployeeContainer
It will Set the Container to the value passed as Object
SetValue(Object). Method in class Container.VolunteerContainer
It will Set the Container to the value passed as Object
sin. Variable in class Empl.Employee
Variable to store the name of the Employee SIN

T

toString(). Method in class Empl.ContractEmployee
overrides the toString Function of the Object .
toString(). Method in class Empl.Empl
overrides the toString Function of the Object .
toString(). Method in class Empl.Employee
overrides the toString Function of the Object .
toString(). Method in class Empl.PermanentEmployee
overrides the toString Function of the Object .
toString(). Method in class Empl.Volunteer
overrides the toString Function of the Object .

V

value. Variable in class Container.ContractEmployeeContainer
private variable to hold the ContractEmployee Reference
value. Variable in class Container.PermanentEmployeeContainer
private variable to hold the PermanentEmployee Reference
value. Variable in class Container.VolunteerContainer
private variable to hold the ContractEmployee Reference
Volunteer(). Constructor for class Empl.Volunteer
Default Constructor
Volunteer(String, String). Constructor for class Empl.Volunteer
Constructor with two argument "name" and "address"
VolunteerContainer(). Constructor for class Container.VolunteerContainer
default Constructor
VolunteerSalaryException(). Constructor for class MyException.VolunteerSalaryException
VolunteerSalaryException(String). Constructor for class MyException.VolunteerSalaryException

W

wage. Variable in class Empl.ContractEmployee
Variable to store the wages of the Contract Employee
writeObject(ObjectOutputStream). Method in class Container.Container
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Container.ContainerArray
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Container.ContainerList
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Empl.ContractEmployee
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Container.ContractEmployeeContainer
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Empl.Empl
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Empl.Employee
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Container.Implementation
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Empl.PermanentEmployee
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Container.PermanentEmployeeContainer
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Empl.Volunteer
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
writeObject(ObjectOutputStream). Method in class Container.VolunteerContainer
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream
1