HttpParamList pl = (HttpParamList) hvalue;
pl.setParameter(pname, pvalue);
}
} else if (hvalue instanceof HttpRangeList) {
HttpRangeList rl = (HttpRangeList) hvalue;
rl.addRange(HttpFactory.parseRange(value));
} else if (hvalue instanceof HttpSetCookieList) {
HttpSetCookieList scl = (HttpSetCookieList) hvalue;
HttpSetCookieList nscl = HttpFactory.parseSetCookieList(value);
HttpSetCookie scookies[] = nscl.getSetCookies();
for (int i = 0 ; i < scookies.length ; i++) {