com.crystaldecisions.sdk.occa.report.application
Class ClientDocumentEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.crystaldecisions.sdk.occa.report.application.ClientDocumentEvent
All Implemented Interfaces:
java.io.Serializable

public class ClientDocumentEvent
extends java.util.EventObject

This class defines an event that represents a report modification.

See Also:
IClientDocumentEventListener, Serialized Form

Constructor Summary
ClientDocumentEvent(ClientDocument clientDoc, java.lang.String propertyName)
          Creates a new ClientDocumentEvent object that describes a change to the report.
 
Method Summary
 ClientDocument getClientDocument()
          Returns the document that generated this event.
 java.lang.String getPropertyName()
          Returns a description of the report modification.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ClientDocumentEvent

public ClientDocumentEvent(ClientDocument clientDoc,
                           java.lang.String propertyName)
Creates a new ClientDocumentEvent object that describes a change to the report.

Parameters:
clientDoc - the ClientDocument that generated the event
propertyName - a description of the change, usually a ClientDocumentPropertyChangeType constant
See Also:
ClientDocumentPropertyChangeType
Method Detail

getClientDocument

public ClientDocument getClientDocument()
Returns the document that generated this event.

Returns:
the ClientDocument that generated this event

getPropertyName

public java.lang.String getPropertyName()
Returns a description of the report modification.

Returns:
a String object that describes the type of change, usually a ClientDocumentPropertyChangeType constant
See Also:
ClientDocumentPropertyChangeType