setAttribute method

ContextConfig setAttribute(
  1. String name,
  2. Object value
)

Implementation

ContextConfig setAttribute(final String name, final Object value) {
  attributes_[name] = value;
  return this;
}