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