Java Doc for CompletionData.java in  » Science » Cougaar12_4 » org » cougaar » planning » servlet » data » completion » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Science » Cougaar12_4 » org.cougaar.planning.servlet.data.completion 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.cougaar.planning.servlet.data.completion.CompletionData

All known Subclasses:   org.cougaar.planning.servlet.data.completion.SimpleCompletionData,  org.cougaar.planning.servlet.data.completion.FullCompletionData,
CompletionData
abstract public class CompletionData implements XMLable,DeXMLable,Serializable(Code)
Abstract representation of the data leaving the Completion PSP.
See Also:   FullCompletionData
See Also:   SimpleCompletionData


Field Summary
final public static  StringNAME_TAG
    
final public static  StringNUMBER_OF_TASKS_ATTR
    
final public static  StringRATIO_ATTR
    
final public static  StringTIME_MILLIS_ATTR
    
protected  intnumRootProjectSupplyTasks
    
protected  intnumRootSupplyTasks
    
protected  intnumRootTransportTasks
    
protected  intnumTasks
    
protected  doubleratio
    
protected  longtimeMillis
    

Constructor Summary
public  CompletionData()
    

Method Summary
abstract public  booleancloseTag(String name)
     Report an endElement.
abstract public  voidcompleteSubObject(String name, DeXMLable obj)
     This function will be called whenever a subobject has completed de-XMLizing and needs to be encorporated into this object.
abstract public  FailedTaskgetFailedTaskAt(int i)
    
abstract public  intgetNumberOfFailedTasks()
    
public  intgetNumberOfFullySuccessfulTasks()
    
public  intgetNumberOfRootProjectSupplyTasks()
    
public  intgetNumberOfRootSupplyTasks()
    
public  intgetNumberOfRootTransportTasks()
    
public  intgetNumberOfTasks()
    
abstract public  intgetNumberOfUnconfidentTasks()
    
abstract public  intgetNumberOfUnestimatedTasks()
    
abstract public  intgetNumberOfUnplannedTasks()
    
public  doublegetRatio()
     number between 0.0 and 1.0, inclusive.
public  longgetTimeMillis()
    
abstract public  UnconfidentTaskgetUnconfidentTaskAt(int i)
    
abstract public  UnestimatedTaskgetUnestimatedTaskAt(int i)
    
abstract public  UnplannedTaskgetUnplannedTaskAt(int i)
    
abstract public  voidopenTag(String name, Attributes attr, String data)
     Report a startElement that pertains to THIS object, not any sub objects.
public  voidsetNumberOfRootProjectSupplyTasks(int numTasks)
    
public  voidsetNumberOfRootSupplyTasks(int numTasks)
    
public  voidsetNumberOfRootTransportTasks(int numTasks)
    
public  voidsetNumberOfTasks(int numTasks)
    
public  voidsetRatio(double ratio)
    
public  voidsetTimeMillis(long timeMillis)
    
abstract public  voidtoXML(XMLWriter w)
    

Field Detail
NAME_TAG
final public static String NAME_TAG(Code)



NUMBER_OF_TASKS_ATTR
final public static String NUMBER_OF_TASKS_ATTR(Code)



RATIO_ATTR
final public static String RATIO_ATTR(Code)



TIME_MILLIS_ATTR
final public static String TIME_MILLIS_ATTR(Code)



numRootProjectSupplyTasks
protected int numRootProjectSupplyTasks(Code)



numRootSupplyTasks
protected int numRootSupplyTasks(Code)



numRootTransportTasks
protected int numRootTransportTasks(Code)



numTasks
protected int numTasks(Code)



ratio
protected double ratio(Code)



timeMillis
protected long timeMillis(Code)




Constructor Detail
CompletionData
public CompletionData()(Code)




Method Detail
closeTag
abstract public boolean closeTag(String name) throws UnexpectedXMLException(Code)
Report an endElement.
Parameters:
  name - endElement tag true iff the object is DONE being DeXMLized



completeSubObject
abstract 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



getFailedTaskAt
abstract public FailedTask getFailedTaskAt(int i)(Code)



getNumberOfFailedTasks
abstract public int getNumberOfFailedTasks()(Code)



getNumberOfFullySuccessfulTasks
public int getNumberOfFullySuccessfulTasks()(Code)



getNumberOfRootProjectSupplyTasks
public int getNumberOfRootProjectSupplyTasks()(Code)



getNumberOfRootSupplyTasks
public int getNumberOfRootSupplyTasks()(Code)



getNumberOfRootTransportTasks
public int getNumberOfRootTransportTasks()(Code)



getNumberOfTasks
public int getNumberOfTasks()(Code)



getNumberOfUnconfidentTasks
abstract public int getNumberOfUnconfidentTasks()(Code)



getNumberOfUnestimatedTasks
abstract public int getNumberOfUnestimatedTasks()(Code)



getNumberOfUnplannedTasks
abstract public int getNumberOfUnplannedTasks()(Code)



getRatio
public double getRatio()(Code)
number between 0.0 and 1.0, inclusive.



getTimeMillis
public long getTimeMillis()(Code)



getUnconfidentTaskAt
abstract public UnconfidentTask getUnconfidentTaskAt(int i)(Code)



getUnestimatedTaskAt
abstract public UnestimatedTask getUnestimatedTaskAt(int i)(Code)



getUnplannedTaskAt
abstract public UnplannedTask getUnplannedTaskAt(int i)(Code)



openTag
abstract 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



setNumberOfRootProjectSupplyTasks
public void setNumberOfRootProjectSupplyTasks(int numTasks)(Code)



setNumberOfRootSupplyTasks
public void setNumberOfRootSupplyTasks(int numTasks)(Code)



setNumberOfRootTransportTasks
public void setNumberOfRootTransportTasks(int numTasks)(Code)



setNumberOfTasks
public void setNumberOfTasks(int numTasks)(Code)



setRatio
public void setRatio(double ratio)(Code)



setTimeMillis
public void setTimeMillis(long timeMillis)(Code)



toXML
abstract public void toXML(XMLWriter w) throws IOException(Code)
Write this class out to the Writer in XML format
Parameters:
  w - output Writer



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.