FileDocCategorySizeDatePackage
SipEvent.javaAPI DocphoneME MR2 API (J2ME)1582Wed May 02 18:00:42 BST 2007gov.nist.siplite

SipEvent

public class SipEvent extends Object
A simple SIP event.

Fields Summary
private Object
source
The saved object causing the event.
Constructors Summary
public SipEvent(Object source)
Constructor.

param
source the cause of the event

        this.source = source;
    
Methods Summary
public java.lang.ObjectgetSource()
Gets the cause of the event.

return
the source object initiating the event

        return this.source;