Uses of Class
xsmeral.semnet.crawler.model.EntityDescriptor

Packages that use EntityDescriptor
xsmeral.semnet.crawler Core classes of the crawler - the crawler/processor itself, host manager, URL manager, DB layer 
xsmeral.semnet.crawler.model Data containers used by the crawler - host and entity descriptors, entity document, URL entry 
 

Uses of EntityDescriptor in xsmeral.semnet.crawler
 

Methods in xsmeral.semnet.crawler that return EntityDescriptor
 EntityDescriptor HostManager.getEntityDescriptor(int hostId, String pattern)
          Returns the EntityDescriptor associated with this URL pattern or null if the pattern does not represent an entity in the provided host
 

Methods in xsmeral.semnet.crawler that return types with arguments of type EntityDescriptor
 Map<Pattern,EntityDescriptor> HostManager.getEntityDescriptorMap(int hostId)
          Returns the map between entity URL patterns and their entity descriptors for the host with given ID, or null if the ID is not mapped to any managed host.
 

Uses of EntityDescriptor in xsmeral.semnet.crawler.model
 

Methods in xsmeral.semnet.crawler.model that return EntityDescriptor
 EntityDescriptor EntityDocument.getEntityDescriptor()
          Returns the entity descriptor describing this document.
 

Methods in xsmeral.semnet.crawler.model that return types with arguments of type EntityDescriptor
 Collection<EntityDescriptor> HostDescriptor.getEntityDescriptors()
          Returns EntityDescriptors which represent entities in this host (pages that will be scraped)
 

Methods in xsmeral.semnet.crawler.model with parameters of type EntityDescriptor
 void HostDescriptor.addEntityDescriptor(EntityDescriptor entityDescriptor)
           
 void EntityDocument.setEntityDescriptor(EntityDescriptor entDesc)
           
 

Method parameters in xsmeral.semnet.crawler.model with type arguments of type EntityDescriptor
 void HostDescriptor.setEntityDescriptors(Collection<EntityDescriptor> entityDescriptors)
           
 

Constructors in xsmeral.semnet.crawler.model with parameters of type EntityDescriptor
EntityDocument(String baseURL, String url, EntityDescriptor entDesc, TagNode document)
          Initializes all fields
 

Constructor parameters in xsmeral.semnet.crawler.model with type arguments of type EntityDescriptor
HostDescriptor(String baseURL, String name, String charset, Integer crawlDelay, Boolean sourceFirst, Map<Pattern,Integer> sourceURLPatterns, Collection<EntityDescriptor> entityDescriptors)
          Initializes all fields