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