/*
* Note: we don't check for type mismatches here; we assume
* the expression evaluator will return the expected type
* (by virtue of knowledge we give it about what that type is).
* A ClassCastException here is truly unexpected, so we let it
* propagate up.
*/
url = (String) ExpressionUtil.evalNotNull(
"import", "url", url_, String.class, this, pageContext);
if (url == null || url.equals(""))
throw new NullAttributeException("import", "url");
context = (String) ExpressionUtil.evalNotNull(
"import", "context", context_, String.class, this, pageContext);
charEncoding = (String) ExpressionUtil.evalNotNull(
"import", "charEncoding", charEncoding_, String.class, this,
pageContext);