setParameter method

void setParameter(
  1. String name,
  2. String quotedValue
)

Adds a new or replaces and existing parameter name with the value quotedValue.

Implementation

void setParameter(String name, String quotedValue) {
  parameters[name] = quotedValue;
}