org.jboss.weld.bootstrap.spi
Interface Scanning


public interface Scanning

Scanning is a data structures representing the <scan> element in Weld's extensions to beans.xml. See the XSD for Weld's extensions to beans.xml for details of the semantics of <scan>. Scanning contains an include Filter list and an exclude Filter list.

Author:
Pete Muir

Field Summary
static Scanning EMPTY_SCANNING
           
 
Method Summary
 Collection<Metadata<Filter>> getExcludes()
          The <exclude> element
 Collection<Metadata<Filter>> getIncludes()
          The <include> element
 

Field Detail

EMPTY_SCANNING

static final Scanning EMPTY_SCANNING
Method Detail

getIncludes

Collection<Metadata<Filter>> getIncludes()
The <include> element

Returns:

getExcludes

Collection<Metadata<Filter>> getExcludes()
The <exclude> element

Returns:


Copyright © 2013 Seam Framework. All Rights Reserved.