All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Empl.Volunteer

java.lang.Object
   |
   +----Empl.Empl
           |
           +----Empl.Volunteer

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

Version:
1.0
Author:
Vicky Shiv

Constructor Index

 o Volunteer()
Default Constructor
 o Volunteer(String, String)
Constructor with two argument "name" and "address"

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

Constructors

 o Volunteer
 public Volunteer()
Default Constructor

 o Volunteer
 public Volunteer(String name,
                  String address)
Constructor with two argument "name" and "address"

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 Empl
 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 Empl
 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 Empl
 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 Empl

All Packages  Class Hierarchy  This Package  Previous  Next  Index
1