gov.sandia.ccaffeine.dc.user_iface.MVC
Class CcaPortParameterEndDialogBox

java.lang.Object
  extended by gov.sandia.ccaffeine.dc.user_iface.MVC.CcaPortParameterEndDialogBox

public class CcaPortParameterEndDialogBox
extends java.lang.Object

Cca components contain ports. Some of the ports contain data fields. When the server wants a VIEW to display a dialog box, the server will 1) send a "newParamDialog", 2) the contents of the dialog box, and 3) a "endParamDialog"


Field Summary
 java.lang.String componentInstanceName
           
 java.lang.String portInstanceName
           
 
Constructor Summary
CcaPortParameterEndDialogBox(java.lang.String xml)
          Parse the xml contents of a port parameter dialog box..
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

componentInstanceName

public java.lang.String componentInstanceName

portInstanceName

public java.lang.String portInstanceName
Constructor Detail

CcaPortParameterEndDialogBox

public CcaPortParameterEndDialogBox(java.lang.String xml)
Parse the xml contents of a port parameter dialog box.. The parsed values are copied into the class's attributes.

The XML code will contains something like this:
<paramEndDialog>
 <componentInstanceName>
   name1
   </componentInstanceName>
 <portInstanceName>name2</portInstanceName>
<paramEndDialog>

Parameters:
xmlComponent - The xml code of one component.