Esempio n. 1
0
 @Override
 public boolean hasProperty(String name) {
   return delegate.hasProperty(name);
 }
Esempio n. 2
0
 @Override
 public boolean isMayImplementMissingMethods() {
   return implementsMissing && delegate.isMayImplementMissingMethods();
 }
Esempio n. 3
0
 @Override
 public boolean isMayImplementMissingProperties() {
   return implementsMissing && includeProperties && delegate.isMayImplementMissingProperties();
 }
Esempio n. 4
0
 @Override
 public Object invokeMethod(String name, Object... arguments) throws MissingMethodException {
   return delegate.invokeMethod(name, arguments);
 }
Esempio n. 5
0
 @Override
 public boolean hasMethod(String name, Object... arguments) {
   return delegate.hasMethod(name, arguments);
 }
Esempio n. 6
0
 @Override
 public Map<String, ?> getProperties() {
   return delegate.getProperties();
 }
Esempio n. 7
0
 @Override
 public void setProperty(final String name, Object value) throws MissingPropertyException {
   delegate.setProperty(name, value);
 }
Esempio n. 8
0
 @Override
 public Object getProperty(String name) throws MissingPropertyException {
   return delegate.getProperty(name);
 }