set method

void set(
  1. String name,
  2. Object value
)

Set the given name to the given value.

Implementation

void set(final String name, final Object value) {
  cache[name] = value;
  save();
}