Uses of Class
context.arch.discoverer.querySystem.AbstractQueryItem

Packages that use AbstractQueryItem
context.arch   
context.arch.discoverer   
context.arch.discoverer.querySystem   
context.arch.enactor   
context.arch.subscriber   
 

Uses of AbstractQueryItem in context.arch
 

Methods in context.arch with parameters of type AbstractQueryItem
 java.util.Vector BaseObject.discovererQuery(AbstractQueryItem query)
          This method allows to send a query to the discoverer.
 

Uses of AbstractQueryItem in context.arch.discoverer
 

Methods in context.arch.discoverer with parameters of type AbstractQueryItem
 DataObject DiscovererMediator.search(AbstractQueryItem query)
          Take a query and returns the corresponding components
 java.lang.Object DiscovererMediator.rawSearch(AbstractQueryItem query)
          Gets an AbstractQueryObject and returns a array with for each index of registered components a value yes/no to indicate if this component fits the query or not TO DO : complete the search to remove the widget included in server: USEFUL??
 

Uses of AbstractQueryItem in context.arch.discoverer.querySystem
 

Subclasses of AbstractQueryItem in context.arch.discoverer.querySystem
 class AbstractBooleanQueryItem
           
 class ANDQueryItem
           
 class NOTQueryItem
           
 class ORQueryItem
           
 class QueryItem
           
 

Fields in context.arch.discoverer.querySystem declared as AbstractQueryItem
protected  AbstractQueryItem AbstractBooleanQueryItem.left
          the left element : exists in all cases
protected  AbstractQueryItem AbstractBooleanQueryItem.right
          the right element : doesn't exist in all the cases
 

Methods in context.arch.discoverer.querySystem that return AbstractQueryItem
static AbstractQueryItem QueryItem.fromDataObject(DataObject data)
           
static AbstractQueryItem AbstractQueryItem.fromDataObject(DataObject data)
          Convert an DataObject into an AbstractQueryItem object
static AbstractQueryItem AbstractBooleanQueryItem.fromDataObject(DataObject data)
          Takes a dataObject and returns an AbstracQueryItem object
 

Methods in context.arch.discoverer.querySystem with parameters of type AbstractQueryItem
static AbstractBooleanQueryItem AbstractBooleanQueryItem.factory(java.lang.String name, AbstractQueryItem left, AbstractQueryItem right)
          Returns the right object corresponding to the specified name
 

Constructors in context.arch.discoverer.querySystem with parameters of type AbstractQueryItem
ORQueryItem(AbstractQueryItem left, AbstractQueryItem right)
          Creates new ANDQueryItem
NOTQueryItem(AbstractQueryItem left)
          Creates new ANDQueryItem
ANDQueryItem(AbstractQueryItem left, AbstractQueryItem right)
          Creates new ANDQueryItem
AbstractBooleanQueryItem(java.lang.String type, AbstractQueryItem left)
          Creates new BooleanQueryItem.
AbstractBooleanQueryItem(java.lang.String type, AbstractQueryItem left, AbstractQueryItem right)
          Creates new BooleanQueryItem.
 

Uses of AbstractQueryItem in context.arch.enactor
 

Fields in context.arch.enactor declared as AbstractQueryItem
protected  AbstractQueryItem EnactorReference.descriptionQuery
           
 

Methods in context.arch.enactor that return AbstractQueryItem
 AbstractQueryItem EnactorReference.getDescriptionQuery()
           
 

Methods in context.arch.enactor with parameters of type AbstractQueryItem
protected  java.util.Collection EnactorSubscriptionManager.sendDiscovererAttributeQuery(AbstractQueryItem q)
           
 void EnactorReference.setDescriptionQuery(AbstractQueryItem dq)
           
 

Uses of AbstractQueryItem in context.arch.subscriber
 

Methods in context.arch.subscriber that return AbstractQueryItem
 AbstractQueryItem Subscriber.getCondition()
          Returns the subscription conditions, under which the subscriber will be notified
 AbstractQueryItem DiscovererSubscriber.getQuery()
          Returns the subscription query, under which the subscriber will be notified
 AbstractQueryItem ClientSideSubscriber.getCondition()
          Returns the subscription conditions, under which the subscriber will be notified
 

Methods in context.arch.subscriber with parameters of type AbstractQueryItem
 void Subscriber.setCondition(AbstractQueryItem condition)
          Sets the subscription conditions, under which the subscriber will be notified
 void DiscovererSubscriber.setQuery(AbstractQueryItem query)
          Sets the subscription conditions, under which the subscriber will be notified
 void ClientSideSubscriber.setCondition(AbstractQueryItem condition)
          Sets the subscription conditions, under which the subscriber will be notified
 

Constructors in context.arch.subscriber with parameters of type AbstractQueryItem
Subscriber(java.lang.String subBaseObjectId, java.lang.String subHostname, int subPort, java.lang.String subCallback, AbstractQueryItem condition, Attributes attributes)
          Basic constructor that creates a subscriber object.
Subscriber(java.lang.String subBaseObjectId, java.lang.String subHostname, java.lang.String subPort, java.lang.String subCallback, AbstractQueryItem condition, Attributes attributes)
          Basic constructor that creates a subscriber object.
DiscovererSubscriber(java.lang.String componentId, java.lang.String subHostname, int subPort, java.lang.String subCallback, AbstractQueryItem query)
          Basic constructor that creates a subscriber object.
DiscovererSubscriber(java.lang.String baseObjectId, java.lang.String subHostname, java.lang.String subPort, java.lang.String subCallback, AbstractQueryItem query)
          Basic constructor that creates a subscriber object.
ClientSideSubscriber(java.lang.String baseObjectId, java.lang.String subHostname, int subPort, java.lang.String subCallback, AbstractQueryItem condition, Attributes attributes)
          Creates new ClientSideSubscriber
ClientSideSubscriber(java.lang.String baseObjectId, java.lang.String subHostname, java.lang.String subPort, java.lang.String subCallback, AbstractQueryItem condition, Attributes attributes)
          Basic constructor that creates a subscriber object.