| org.apache.cocoon.selection.Selector
All known Subclasses: org.apache.cocoon.selection.SessionAttributeSelector, org.apache.cocoon.selection.CookieSelector, org.apache.cocoon.selection.RequestAttributeSelector, org.apache.cocoon.selection.HeaderSelector, org.apache.cocoon.selection.RequestMethodSelector, org.apache.cocoon.selection.ParameterSelector, org.apache.cocoon.webapps.session.selection.MediaSelector, org.apache.cocoon.selection.ResourceExistsSelector, org.apache.lenya.cms.cocoon.selection.LastModSourceSelector, org.apache.cocoon.selection.NamedPatternsSelector,
Selector | public interface Selector extends Component(Code) | | author: Giacomo Pati author: Leo Sutic version: CVS $Id: Selector.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
boolean | select(String expression, Map objectModel, Parameters parameters) Selectors test pattern against some objects in a Map
model and signals success with the returned boolean value
Parameters: expression - The expression to test. Parameters: objectModel - The Map containing object of thecalling environment which may be usedto select values to test the expression. Parameters: parameters - The sitemap parameters, as specified by <parameter/> tags. |
select | boolean select(String expression, Map objectModel, Parameters parameters)(Code) | | Selectors test pattern against some objects in a Map
model and signals success with the returned boolean value
Parameters: expression - The expression to test. Parameters: objectModel - The Map containing object of thecalling environment which may be usedto select values to test the expression. Parameters: parameters - The sitemap parameters, as specified by <parameter/> tags. boolean Signals successfull test. |
|
|