Beispiel #1
0
 /** {@inheritDoc} */
 public Map<String, Object> getAttributes() {
   return attributes.getAttributes();
 }
Beispiel #2
0
 /** {@inheritDoc} */
 public Set<String> getAttributeNames() {
   return attributes.getAttributeNames();
 }
Beispiel #3
0
 /** {@inheritDoc} */
 public boolean removeAttribute(String name) {
   return attributes.removeAttribute(name);
 }
Beispiel #4
0
 /** {@inheritDoc} */
 public boolean hasAttribute(String name) {
   return attributes.hasAttribute(name);
 }
Beispiel #5
0
 /** {@inheritDoc} */
 public boolean setAttribute(String name, Object value) {
   return attributes.setAttribute(name, value);
 }
Beispiel #6
0
 /** {@inheritDoc} */
 public Object getAttribute(String name) {
   return attributes.getAttribute(name);
 }