Java Doc for CollectionSubscription.java in  » Science » Cougaar12_4 » org » cougaar » core » blackboard » 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.core.blackboard 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.cougaar.core.blackboard.Subscription
      org.cougaar.core.blackboard.CollectionSubscription

All known Subclasses:   org.cougaar.core.blackboard.QuerySubscription,  org.cougaar.core.blackboard.IncrementalSubscription,
CollectionSubscription
public class CollectionSubscription extends Subscription implements Collection(Code)
A subclass of Subscription that maintains a Collection of blackboard objects matching the filter predicate, plus ChangeReport s for the objects changed since the last transaction.


Field Summary
protected  Collectionreal
    

Constructor Summary
public  CollectionSubscription(UnaryPredicate p, Collection c)
    
public  CollectionSubscription(UnaryPredicate p)
    

Method Summary
public  booleanadd(Object o)
     Use org.cougaar.core.service.BlackboardService.publishAdd instead. Add an object to the backing collection, not the blackboard.
public  booleanaddAll(Collection c)
     Use org.cougaar.core.service.BlackboardService.publishAdd instead. Add objects to the backing collection, not the blackboard.
public  voidclear()
     Use org.cougaar.core.service.BlackboardService.publishRemove instead. Clear the backing collection, not the blackboard.
 booleanconditionalChange(Object o, List changes, boolean isVisible)
    
public  booleancontains(Object o)
    
public  booleancontainsAll(Collection c)
    
public  Enumerationelements()
    
public  booleanequals(Object o)
    
public  Objectfirst()
     the first object in the collection.
public  SetgetChangeReports(Object o)
     Return the set of ChangeReport s for publishChanges made to the specified object since the last transaction.

If an object is changed without specifying a ChangeReport then the "AnonymousChangeReport" is used.

public  CollectiongetCollection()
     Retrieve the underlying Collection backing this Subscription.
public  booleanisEmpty()
    
public  Iteratoriterator()
    
protected  voidprivateAdd(Object o, boolean isVisible)
    
protected  voidprivateChange(Object o, List changes, boolean isVisible)
    
protected  CollectionprivateGetChangedCollection()
    
protected  EnumerationprivateGetChangedList()
    
protected  voidprivateRemove(Object o, boolean isVisible)
    
public  booleanremove(Object o)
     Use org.cougaar.core.service.BlackboardService.publishRemove instead. Remove an object from the backing collection, not the blackboard.
public  booleanremoveAll(Collection c)
     Use org.cougaar.core.service.BlackboardService.publishRemove instead. Remove objects from the backing collection, not the blackboard.
protected  voidresetChanges()
    
public  booleanretainAll(Collection c)
     Use org.cougaar.core.service.BlackboardService.publishRemove instead. Retain objects in the backing collection, not the blackboard.
public  intsize()
    
public  Object[]toArray()
    
public  Object[]toArray(Object[] a)
    
public  StringtoString()
    

Field Detail
real
protected Collection real(Code)
The actual (delegate) Container




Constructor Detail
CollectionSubscription
public CollectionSubscription(UnaryPredicate p, Collection c)(Code)



CollectionSubscription
public CollectionSubscription(UnaryPredicate p)(Code)




Method Detail
add
public boolean add(Object o)(Code)
Use org.cougaar.core.service.BlackboardService.publishAdd instead. Add an object to the backing collection, not the blackboard.



addAll
public boolean addAll(Collection c)(Code)
Use org.cougaar.core.service.BlackboardService.publishAdd instead. Add objects to the backing collection, not the blackboard.



clear
public void clear()(Code)
Use org.cougaar.core.service.BlackboardService.publishRemove instead. Clear the backing collection, not the blackboard.



conditionalChange
boolean conditionalChange(Object o, List changes, boolean isVisible)(Code)
overrides Subscription.conditionalChange



contains
public boolean contains(Object o)(Code)
true of the subscription contains the object



containsAll
public boolean containsAll(Collection c)(Code)
true of the subscription contains all the objects



elements
public Enumeration elements()(Code)
an enumeration of the subscription objects



equals
public boolean equals(Object o)(Code)



first
public Object first()(Code)
the first object in the collection.



getChangeReports
public Set getChangeReports(Object o)(Code)
Return the set of ChangeReport s for publishChanges made to the specified object since the last transaction.

If an object is changed without specifying a ChangeReport then the "AnonymousChangeReport" is used. Thus the set is always non-null and contains one or more entries.

If an object is not changed during the transaction then this method returns null.

Illegal to call outside of transaction boundaries. if the object was changed: a non-null Set of one or more ChangeReport instances, possibly containing the AnonymousChangeReport; otherwise null.




getCollection
public Collection getCollection()(Code)
Retrieve the underlying Collection backing this Subscription. When an object is publishAdded and matches the predicate, it will be added to the Collection. If it is later publishRemoved (and the predicate still matches), then the object will be removed from the Collection. the subscription's collection -- use thisinstead.



isEmpty
public boolean isEmpty()(Code)
CollectionSubscription.size == 0



iterator
public Iterator iterator()(Code)
an Iterator of the subscription contents



privateAdd
protected void privateAdd(Object o, boolean isVisible)(Code)
Subscriber method to add an object



privateChange
protected void privateChange(Object o, List changes, boolean isVisible)(Code)
Subscriber method to change an object



privateGetChangedCollection
protected Collection privateGetChangedCollection()(Code)
IncrementalSubscription method to get the changed collection



privateGetChangedList
protected Enumeration privateGetChangedList()(Code)
IncrementalSubscription method to get the changed enumeration



privateRemove
protected void privateRemove(Object o, boolean isVisible)(Code)
Subscriber method to remove an object



remove
public boolean remove(Object o)(Code)
Use org.cougaar.core.service.BlackboardService.publishRemove instead. Remove an object from the backing collection, not the blackboard.



removeAll
public boolean removeAll(Collection c)(Code)
Use org.cougaar.core.service.BlackboardService.publishRemove instead. Remove objects from the backing collection, not the blackboard.



resetChanges
protected void resetChanges()(Code)
Subscriber method to reset the ChangeReports map



retainAll
public boolean retainAll(Collection c)(Code)
Use org.cougaar.core.service.BlackboardService.publishRemove instead. Retain objects in the backing collection, not the blackboard.



size
public int size()(Code)
the subscription size



toArray
public Object[] toArray()(Code)
an array of the subscription contents



toArray
public Object[] toArray(Object[] a)(Code)
an array of the subscription contents



toString
public String toString()(Code)



Fields inherited from org.cougaar.core.blackboard.Subscription
protected boolean myHasChanged(Code)(Java Doc)
final protected UnaryPredicate predicate(Code)(Java Doc)
protected Subscriber subscriber(Code)(Java Doc)

Methods inherited from org.cougaar.core.blackboard.Subscription
public boolean apply(Envelope envelope)(Code)(Java Doc)
final protected void checkTransactionOK(String s)(Code)(Java Doc)
boolean conditionalAdd(Object o, boolean isVisible)(Code)(Java Doc)
boolean conditionalChange(Object o, List changes, boolean isVisible)(Code)(Java Doc)
boolean conditionalRemove(Object o, boolean isVisible)(Code)(Java Doc)
public void fill(Envelope envelope)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
final public Subscriber getSubscriber()(Code)(Java Doc)
final public boolean hasChanged()(Code)(Java Doc)
abstract protected void privateAdd(Object o, boolean isVisible)(Code)(Java Doc)
final protected boolean privateApply(Envelope envelope)(Code)(Java Doc)
abstract protected void privateChange(Object o, List changes, boolean isVisible)(Code)(Java Doc)
abstract protected void privateRemove(Object o, boolean isVisible)(Code)(Java Doc)
protected void resetChanges()(Code)(Java Doc)
final protected void setChanged(boolean changed)(Code)(Java Doc)
final void setIsInitialized()(Code)(Java Doc)
final void setSubscriber(Subscriber s)(Code)(Java Doc)
final protected void subscriberSignalExternalActivity()(Code)(Java Doc)

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.