List of usage examples for javax.servlet.jsp PageContext setAttribute
abstract public void setAttribute(String name, Object value, int scope);
From source file:org.vulpe.view.tags.Functions.java
/** * * @param pageContext//ww w. j a va 2s . c o m * @param key * @param value * @param scope * @return */ public static Object put(final PageContext pageContext, final String key, final Object value, final Integer scope) { pageContext.setAttribute(key, value, scope); return value; }