Lines Matching full:value
52 * Sets the value for the named attribute.
56 * The name of the attribute to set a value with.
57 * @param value
58 * The value to set.
60 public void setValue(String attributeName, Object value) {
61 if (attributeName == null || value == null) {
64 values.put(attributeName, value);
69 * Gets the value associated with the named attribute.
73 * The name of the attribute to get a value for.
74 * @return The attribute's value.