gov.sandia.ccaffeine.dc.user_iface.MVC.event
Class RevalidateEvent

java.lang.Object
  extended by java.util.EventObject
      extended by gov.sandia.ccaffeine.dc.user_iface.MVC.event.RevalidateEvent
All Implemented Interfaces:
java.io.Serializable

public class RevalidateEvent
extends java.util.EventObject

Tthis event can be used to notify all listeners that the cca server has revalidated all of the cca ports in a cca component. A view might respond by re-rendering all of the ports that are inside a cca component.

See Also:
Serialized Form

Field Summary
protected  java.lang.String componentInstanceName
          The name of the component that was revalidated.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
RevalidateEvent(java.lang.Object source, java.lang.String componentInstanceName)
          Create a RevalidateEvent.
 
Method Summary
 java.lang.String getComponentInstanceName()
           
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

componentInstanceName

protected java.lang.String componentInstanceName
The name of the component that was revalidated. The name is usually the java class name of the component (without the package name) concatenated with an index number. Example: "StartComponent0"

Constructor Detail

RevalidateEvent

public RevalidateEvent(java.lang.Object source,
                       java.lang.String componentInstanceName)
Create a RevalidateEvent.

The cca server has revalidated all of the cca ports in a cca component. A view might respond by re-rendering all of the ports that are inside a cca component.

Parameters:
source - The entity that created this event.
componentInstanceName - The name of the component that was revalidated. The name is usually the java class name of the component (without the package name) concatenated with an index number. Example: "StartComponent0"
Method Detail

getComponentInstanceName

public java.lang.String getComponentInstanceName()