All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Empl.ContractEmployee

java.lang.Object
   |
   +----Empl.Empl
           |
           +----Empl.Employee
                   |
                   +----Empl.ContractEmployee

public class ContractEmployee
extends Employee
implements Serializable
Description This class is derived from the Employee and have the basic 
functions to deals with all operation of ContractEmployee

Version:
1.0
Author:
Vicky Shiv

Variable Index

 o wage
Variable to store the wages of the Contract Employee

Constructor Index

 o ContractEmployee()
Default Constructor
 o ContractEmployee(String, String, String, String)
Constructor with four argument "name","address","sin" and wage

Method Index

 o GetName()
GetName is the Function which return the protected attribute "name" associated with the Employee
 o readObject(ObjectInputStream)
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream
 o toString()
overrides the toString Function of the Object .
 o writeObject(ObjectOutputStream)
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream

Variables

 o wage
 public String wage
Variable to store the wages of the Contract Employee

Constructors

 o ContractEmployee
 public ContractEmployee()
Default Constructor

 o ContractEmployee
 public ContractEmployee(String name,
                         String address,
                         String sin,
                         String wage)
Constructor with four argument "name","address","sin" and wage

Methods

 o readObject
 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
These are the default function to be include to Implement Serialization This will call the DefalutReadObject function for the ObjectInputStream

Overrides:
readObject in class Employee
 o writeObject
 private void writeObject(ObjectOutputStream out) throws IOException
These are the default function to be include to Implement Serialization This will call the DefalutWriteObject function for the ObjectOutputStream

Overrides:
writeObject in class Employee
 o toString
 public String toString()
overrides the toString Function of the Object . This is used for printing the Object

Returns:
String (Return the String representation of the Object)
Overrides:
toString in class Employee
 o GetName
 public String GetName()
GetName is the Function which return the protected attribute "name" associated with the Employee

Returns:
String (Return the name associated with the Object)
Overrides:
GetName in class Employee

All Packages  Class Hierarchy  This Package  Previous  Next  Index
1