Home | History | Annotate | Download | only in params

Lines Matching refs:parameters

42  * This class represents a collection of HTTP protocol parameters.
43 * Protocol parameters may be linked together to form a hierarchy.
46 * collection of parameters.
57 /** Map of HTTP parameters that this collection contains. */
58 private HashMap parameters;
67 if (this.parameters != null) {
68 param = this.parameters.get(name);
74 if (this.parameters == null) {
75 this.parameters = new HashMap();
77 this.parameters.put(name, value);
82 if (this.parameters == null) {
86 if (this.parameters.containsKey(name)) {
87 this.parameters.remove(name);
112 return this.parameters != null && this.parameters.get(name) != null;
116 * Removes all parameters from this collection.
119 this.parameters = null;
123 * Creates a copy of these parameters.
128 * <i>local</i> parameters in this object.
143 * Copies the locally defined parameters to the argument parameters.
146 * @param target the parameters to which to copy
149 if (this.parameters == null)
152 Iterator iter = parameters.entrySet().iterator();