| java.lang.Object org.cougaar.planning.servlet.data.completion.AbstractTask
All known Subclasses: org.cougaar.planning.servlet.data.completion.UnestimatedTask, org.cougaar.planning.servlet.data.completion.FailedTask, org.cougaar.planning.servlet.data.completion.UnplannedTask, org.cougaar.planning.servlet.data.completion.UnconfidentTask,
CONFIDENCE_TAG | final protected static String CONFIDENCE_TAG(Code) | | |
PARENT_UID_TAG | final protected static String PARENT_UID_TAG(Code) | | |
PARENT_UID_URL_TAG | final protected static String PARENT_UID_URL_TAG(Code) | | |
PLAN_ELEMENT_TAG | final protected static String PLAN_ELEMENT_TAG(Code) | | |
confidence | protected double confidence(Code) | | |
AbstractTask | public AbstractTask()(Code) | | |
closeTag | public boolean closeTag(String name) throws UnexpectedXMLException(Code) | | Report an endElement.
Parameters: name - endElement tag true iff the object is DONE being DeXMLized |
completeSubObject | public void completeSubObject(String name, DeXMLable obj) throws UnexpectedXMLException(Code) | | This function will be called whenever a subobject has
completed de-XMLizing and needs to be encorporated into
this object.
Parameters: name - the startElement tag that caused this subobjectto be created Parameters: obj - the object itself |
getConfidence | public double getConfidence()(Code) | | |
openTag | public void openTag(String name, Attributes attr, String data) throws UnexpectedXMLException(Code) | | Report a startElement that pertains to THIS object, not any
sub objects. Call also provides the elements Attributes and data.
Note, that unlike in a SAX parser, data is guaranteed to contain
ALL of this tag's data, not just a 'chunk' of it.
Parameters: name - startElement tag Parameters: attr - attributes for this tag Parameters: data - data for this tag |
setConfidence | public void setConfidence(double confidence)(Code) | | |
setParentUID | public void setParentUID(String parentUID)(Code) | | |
setParentUID_URL | public void setParentUID_URL(String parentUID_url)(Code) | | |
setPlanElement | public void setPlanElement(String planElement)(Code) | | |
toXML | public void toXML(XMLWriter w) throws IOException(Code) | | Write this class out to the Writer in XML format
Parameters: w - output Writer |
|
|