Java Code Examples for org.springframework.web.util.TagUtils#getScope()
The following examples show how to use
org.springframework.web.util.TagUtils#getScope() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UrlTag.java From spring-analysis-note with MIT License | 2 votes |
/** * Set the scope to export the URL variable to. This attribute has no * meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 2
Source File: EvalTag.java From spring-analysis-note with MIT License | 2 votes |
/** * Set the scope to export the evaluation result to. * This attribute has no meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 3
Source File: UrlTag.java From java-technology-stack with MIT License | 2 votes |
/** * Set the scope to export the URL variable to. This attribute has no * meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 4
Source File: EvalTag.java From java-technology-stack with MIT License | 2 votes |
/** * Set the scope to export the evaluation result to. * This attribute has no meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 5
Source File: UrlTag.java From lams with GNU General Public License v2.0 | 2 votes |
/** * Set the scope to export the URL variable to. This attribute has no * meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 6
Source File: EvalTag.java From lams with GNU General Public License v2.0 | 2 votes |
/** * Set the scope to export the evaluation result to. * This attribute has no meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 7
Source File: UrlTag.java From spring4-understanding with Apache License 2.0 | 2 votes |
/** * Set the scope to export the URL variable to. This attribute has no * meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }
Example 8
Source File: EvalTag.java From spring4-understanding with Apache License 2.0 | 2 votes |
/** * Set the scope to export the evaluation result to. * This attribute has no meaning unless var is also defined. */ public void setScope(String scope) { this.scope = TagUtils.getScope(scope); }