Uses of Class
fleXplorer.Facets.Facet

Packages that use Facet
fleXplorer.FacetedTaxonomy   
 

Uses of Facet in fleXplorer.FacetedTaxonomy
 

Methods in fleXplorer.FacetedTaxonomy that return Facet
 Facet<?> IFT.getFacet(int index)
          Returns the Facet at the specified position in Faceted Taxonomy's list of Facets.
 Facet<?> FT.getFacet(int index)
          Returns the Facet at the specified position in Faceted Taxonomy's list of Facets.
 Facet<?> IFT.getFacet(java.lang.String facetName)
          Returns the Facet with the specified name that included in Faceted Taxonomy's list of Facets.
 Facet<?> FT.getFacet(java.lang.String facetName)
          Returns the Facet with the specified name that included in Faceted Taxonomy's list of Facets.
 

Methods in fleXplorer.FacetedTaxonomy that return types with arguments of type Facet
 java.util.Collection<Facet<?>> IFT.getFacetsList()
          Returns a Collection with all Facets that included into Faceted Taxonomy's list of Facets.
 java.util.Collection<Facet<?>> FT.getFacetsList()
          Returns a Collection with all Facets that included into Faceted Taxonomy's list of Facets.
 

Methods in fleXplorer.FacetedTaxonomy with parameters of type Facet
 boolean IFT.add(Facet<?> facet)
          Adds a Facet into the list of Facets of Faceted Taxonomy.
 boolean FT.add(Facet<?> facet)
          Adds a Facet into the list of Facets of Faceted Taxonomy.
 boolean IFT.add(Facet<?> facet, int index)
          Adds a Facet into the list of Facets of Faceted Taxonomy at the specified position.
 boolean FT.add(Facet<?> facet, int index)
          Adds a Facet into the list of Facets of Faceted Taxonomy at the specified position.
 

Method parameters in fleXplorer.FacetedTaxonomy with type arguments of type Facet
 boolean IFT.addAll(java.util.Collection<Facet<?>> list)
          Adds a Collection of Facets into the Faceted Taxonomy's list of Facets.
 boolean FT.addAll(java.util.Collection<Facet<?>> list)
          Adds a Collection of Facets into the Faceted Taxonomy's list of Facets.
 

Constructor parameters in fleXplorer.FacetedTaxonomy with type arguments of type Facet
FT(java.lang.String name, java.util.Collection<Facet<?>> list, FacetsOrder isOrdered)
          Constructs a Faceted Taxonomy with specified name and Facets.